.mega-panel[data-open="false"] {
      pointer-events: none;
    }

    video {
      object-fit: cover !important;
    }

    :root {
      --navy: #012a86;
      --navy-dark: #001b5e;
      --navy-deep: #000e38;
      --ink: #181e2b;
      --dark: #0f131b;
      --gray-700: #3a4258;
      --gray-600: #5b6478;
      --gray-500: #7b849a;
      --gray-400: #97a0b3;
      --gray-200: #e4e7ef;
      --gray-150: #edeff4;
      --gray-100: #f3f4f8;
      --gray-50: #f8f9fb;
      --accent: #17b6d9;
      --silver: #d9dee4;
      --glow-a: #7c5cff;
      --glow-b: #3d7bff;
      --glow-c: #22d3ee;
      --glass-bg: rgba(255, 255, 255, 0.3);
      --glass-border: rgba(255, 255, 255, 0.65);
      --glass-bg-2: rgba(255, 255, 255, 0.06);
      --glass-border-2: rgba(255, 255, 255, 0.14);
      --white: #ffffff;
      --radius-global: 5px;
      --radius-btn: 50px;
      --shadow-lg: 0 28px 64px -16px rgba(1, 20, 80, 0.24), 0 6px 20px rgba(1, 20, 80, 0.05);
      --font-sans: "Google Sans Flex", sans-serif;
      --ease: cubic-bezier(0.4, 0, 0.2, 1);
      --transition: 240ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: auto;
    }

    /* ---- Lenis smooth scroll (recommended setup) ---- */
    html.lenis,
    html.lenis body {
      height: auto;
    }

    .lenis.lenis-smooth {
      scroll-behavior: auto !important;
    }

    .lenis.lenis-smooth [data-lenis-prevent] {
      overscroll-behavior: contain;
    }

    .lenis.lenis-stopped {
      overflow: hidden;
    }

    .lenis.lenis-scrolling iframe {
      pointer-events: none;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: var(--font-sans);
      color: var(--ink);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
    }

    ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    img {
      max-width: 100%;
      width: 100%;
      height: 100%;
      display: block;
        image-rendering: -webkit-optimize-contrast !important; 
  image-rendering: crisp-edges !important;
  image-rendering: auto !important;
    }

    :focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
      border-radius: var(--radius-global);
    }

    /* ==================== scroll-reveal system ==================== */

    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition:
        opacity 0.8s var(--ease),
        transform 0.8s var(--ease);
      transition-delay: var(--reveal-delay, 0s);
      will-change: opacity, transform;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      transform: translateX(-44px);
    }

    .reveal-left.is-visible {
      transform: translateX(0);
    }

    .reveal-right {
      transform: translateX(44px);
    }

    .reveal-right.is-visible {
      transform: translateX(0);
    }

    .reveal-scale {
      transform: scale(0.94);
    }

    .reveal-scale.is-visible {
      transform: scale(1);
    }

    .reveal-stagger>* {
      opacity: 0;
      transform: translateY(30px);
      transition:
        opacity 0.6s var(--ease),
        transform 0.6s var(--ease);
      transition-delay: calc(var(--stagger-index, 0) * 90ms);
      will-change: opacity, transform;
    }

    .reveal-stagger.is-visible>* {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {

      .reveal,
      .reveal-stagger>* {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ==================== navbar start  =================== */

    .utility-bar {
      background: var(--gray-150);
      color: var(--gray-600);
      border-bottom: 1px solid var(--gray-150);
    }

    .utility-inner {
      height: 38px;
      font-size: 14px;
      font-weight: 500;
    }

    .utility-item {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
    }

    .utility-item svg {
      flex-shrink: 0;
      opacity: 0.8;
    }

    .utility-item:hover a,
    .utility-item:hover svg {
      color: var(--navy);
    }

    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #fff;
      border-bottom: 1px solid var(--gray-150);
      box-shadow: 0 10px 30px rgba(15, 35, 70, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    .nav-inner {
      height: 70px;
    }

    .logo {
      flex-shrink: 0;
    }

    .logo img {
      height: 70px;
      width: auto;
      object-fit: contain;
    }

    .nav-links {
      gap: 2px;
    }

    .nav-item {
      position: relative;
    }

    .nav-item.has-mega {
      position: static;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 16px;
      border-radius: var(--radius-global);
      font-size: 15.5px;
      font-weight: 500;
      color: var(--ink);
      background: none;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition:
        color 0.15s var(--ease),
        background 0.15s var(--ease);
    }

    .nav-link:hover {
      color: var(--navy);
      background: var(--gray-50);
    }

    .nav-item.has-mega .nav-link[aria-expanded="true"] {
      color: var(--navy);
      background: var(--gray-50);
    }

    .chevron {
      transition: transform 0.25s var(--ease);
    }

    .nav-link[aria-expanded="true"] .chevron {
      transform: rotate(180deg);
    }

    .nav-right {
      flex-shrink: 0;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--navy);
      color: #fff;
      padding: 11px 26px;
      border-radius: var(--radius-btn);
      font-size: 15px;
      font-weight: 500;
      transition: background 0.15s var(--ease);
      white-space: nowrap;
    }

    .cta-button:hover {
      background: var(--navy-dark);
      color: var(--white);
    }

    .hamburger {
      background: none;
      border: none;
      cursor: pointer;
      width: 40px;
      height: 40px;
      padding: 0;
      border-radius: var(--radius-global);
      color: var(--ink);
    }

    .hamburger:hover {
      background: var(--gray-50);
    }

    .mega-panel {
      max-width: 1280px;
      position: absolute;
      width: 100%;
      top: 100%;
      left: 0;
      right: 0;
      margin: 0 auto;
      background: #fff;
      border-top: 1px solid var(--gray-150);
      box-shadow: var(--shadow-lg);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition:
        opacity 0.18s var(--ease),
        transform 0.18s var(--ease),
        visibility 0s linear 0.18s;
    }

    .mega-panel[data-open="true"] {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transition:
        opacity 0.18s var(--ease),
        transform 0.18s var(--ease);
    }

    .mega-inner {
      max-width: 1280px;
      width: 100%;
      min-height: 420px;
      position: relative;
    }

    .mega-close {
      position: absolute;
      top: 14px;
      right: 20px;
      z-index: 2;
      width: 32px;
      height: 32px;
      border-radius: var(--radius-global);
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gray-50);
      border: none;
      color: var(--gray-500);
      cursor: pointer;
      transition:
        background 0.15s var(--ease),
        color 0.15s var(--ease);
    }

    .mega-close:hover {
      background: var(--gray-150);
      color: var(--ink);
    }

    /* ---- Rail (category list) ---- */
    .mega-rail {
      background: var(--gray-50);
      border-right: 1px solid var(--gray-150);
      padding: 28px 14px 24px;
    }

    .rail-eyebrow {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gray-500);
      margin: 0 10px 14px;
    }

    .rail-list {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .rail-row {
      position: relative;
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 11px 12px 11px 14px;
      border-radius: var(--radius-global);
      cursor: pointer;
      transition: background 0.15s var(--ease);
    }

    .rail-row:hover {
      background: var(--gray-150);
    }

    .rail-row.active {
      background: #fff;
      box-shadow: 0 1px 3px rgba(1, 20, 80, 0.08);
    }

    .rail-row.active::before {
      opacity: 1;
    }

    .rail-icon {
      width: 30px;
      height: 30px;
      border-radius: var(--radius-global);
      flex-shrink: 0;
      background: rgba(1, 42, 135, 0.08);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      transition:
        background 0.15s var(--ease),
        color 0.15s var(--ease);
    }

    .rail-row.active .rail-icon {
      background: var(--navy);
      color: #fff;
    }

    .rail-name {
      font-size: 15px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.3;
    }

    .rail-row.active .rail-name {
      color: var(--navy);
    }

    .rail-count {
      margin-left: auto;
      font-size: 11px;
      font-weight: 600;
      color: var(--gray-400);
    }

    .rail-viewall {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 12px;
      padding: 11px 14px;
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      border-top: 1px solid var(--gray-150);
    }

    .rail-viewall svg {
      transition: transform 0.15s var(--ease);
    }

    .rail-viewall:hover svg {
      transform: translateX(3px);
    }

    /* ---- Content region (subcategories + promo) ---- */
    .mega-subcats {
      padding: 32px 36px 28px 32px;
    }

    .subcats-head {
      margin-bottom: 20px;
    }

    .subcats-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gray-500);
      margin: 0;
    }

    .subcats-title {
      font-size: 28px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.01em;
      margin: 6px 0 6px;
    }

    .subcats-desc {
      font-size: 13.5px;
      color: var(--gray-600);
      margin: 0;
      line-height: 1.5;
      max-width: 46ch;
    }

    .subcat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 28px;
      row-gap: 2px;
    }

    .subcat-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 11px 4px;
      border-bottom: 1px solid var(--gray-100);
      font-size: 15px;
      font-weight: 500;
      color: var(--gray-700);
      transition:
        color 0.15s var(--ease),
        padding-left 0.15s var(--ease);
    }

    .subcat-link:hover {
      color: var(--navy);
      padding-left: 6px;
    }

    .subcat-link svg {
      opacity: 0;
      transform: translateX(-4px);
      transition:
        opacity 0.15s var(--ease),
        transform 0.15s var(--ease);
      flex-shrink: 0;
      color: var(--navy);
    }

    .subcat-link:hover svg {
      opacity: 1;
      transform: translateX(0);
    }

    .subcat-empty {
      grid-column: 1/-1;
      font-size: 13.5px;
      color: var(--gray-400);
      font-style: italic;
      padding: 8px 4px;
    }

    .mega-promo {
      background: var(--gray-50);
      border-left: 1px solid var(--gray-150);
      padding: 24px 24px 24px;
      display: flex;
      flex-direction: column;
    }

    .promo-card {
      position: relative;
      border-radius: var(--radius-global);
      overflow: hidden;
      flex: 1;
      min-height: 340px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
    }

    .promo-card img.layer {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0;
      transition: opacity 0.45s var(--ease);
    }

    .promo-card img.layer.visible {
      opacity: 1;
    }

    .promo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(24, 24, 24, 0) 30%,
          rgba(19, 19, 19, 0.86) 100%);
      pointer-events: none;
    }

    .promo-tag {
      position: relative;
      z-index: 1;
      align-self: flex-start;
      margin: 16px 0 0 16px;
      background: rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(6px);
      color: #fff;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: var(--radius-btn);
    }

    .promo-body {
      position: relative;
      z-index: 1;
      padding: 20px;
      color: #fff;
    }

    .promo-body h4 {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin: 0 0 8px;
      line-height: 1.25;
    }

    .promo-body p {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.72);
      margin: 0 0 14px;
      line-height: 1.5;
    }

    .promo-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      padding-bottom: 2px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.4);
      transition:
        border-color 0.15s var(--ease),
        gap 0.15s var(--ease);
    }

    .promo-cta:hover {
      border-color: #fff;
      gap: 9px;
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
      }
    }

    @media (max-width: 1080px) and (min-width: 901px) {
      .mega-promo {
        display: none;
      }

      .mega-subcats.col-lg-8 {
        width: 100%;
      }

      .subcat-grid.row-cols-2>* {
        width: 100%;
      }
    }

    .mobile-drawer {
      position: fixed;
      inset: 0;
      z-index: 1100;
      visibility: hidden;
      pointer-events: none;
    }

    .mobile-drawer[data-open="true"] {
      visibility: visible;
      pointer-events: auto;
    }

    .drawer-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(1, 14, 56, 0.45);
      opacity: 0;
      transition: opacity 0.25s var(--ease);
    }

    .mobile-drawer[data-open="true"] .drawer-backdrop {
      opacity: 1;
    }

    .drawer-panel {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(340px, 86vw);
      background: #fff;
      box-shadow: var(--shadow-lg);
      transform: translateX(100%);
      transition: transform 0.28s var(--ease);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }

    .mobile-drawer[data-open="true"] .drawer-panel {
      transform: translateX(0);
    }

    .drawer-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-bottom: 1px solid var(--gray-150);
    }

    .drawer-head img {
      height: 26px;
    }

    .drawer-close {
      background: none;
      border: none;
      color: var(--ink);
      cursor: pointer;
      width: 36px;
      height: 36px;
      border-radius: var(--radius-global);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .drawer-close:hover {
      background: var(--gray-50);
    }

    .drawer-links {
      padding: 8px 12px;
      flex: 1;
    }

    .drawer-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 10px;
      font-size: 15.5px;
      font-weight: 600;
      color: var(--ink);
      border-bottom: 1px solid var(--gray-100);
      cursor: pointer;
      background: none;
      border-left: none;
      border-right: none;
      border-top: none;
      width: 100%;
      text-align: left;
    }

    .drawer-accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s var(--ease);
    }

    .drawer-accordion-body[data-open="true"] {
      max-height: 1400px;
    }

    .drawer-cat-group {
      border-bottom: 1px solid var(--gray-100);
    }

    .drawer-cat-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 11px 10px 11px 6px;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
    }

    .drawer-cat-link .rail-icon {
      width: 28px;
      height: 28px;
      border-radius: var(--radius-global);
    }

    .drawer-cat-link .chevron {
      width: 12px;
      height: 12px;
      color: var(--gray-400);
      flex-shrink: 0;
    }

    .drawer-subcat-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.22s var(--ease);
    }

    .drawer-subcat-body[data-open="true"] {
      max-height: 700px;
    }

    .drawer-subcat-link {
      display: block;
      padding: 9px 10px 9px 46px;
      font-size: 13px;
      color: var(--gray-600);
    }

    .drawer-subcat-link:hover {
      color: var(--navy);
    }

    .drawer-foot {
      padding: 18px 20px;
      border-top: 1px solid var(--gray-150);
    }

    .drawer-foot .cta-button {
      width: 100%;
      justify-content: center;
    }

    @media (max-width: 991.98px) {
      .utility-inner {
        justify-content: center;
        font-size: 11.5px;
      }
    }

    /* ==================== navbar end  =================== */

    main {
      width: 100%;
      height: auto;
    }

    /* ============ SLIDER SHELL ============ */

    
    .hs-slider {
      width: 100%;
      max-width: 100%;
      margin: 0;
      height: 560px;
      position: relative;
      overflow: hidden;
      background: #201f1f;
    }

    .hs-inner {
      max-width: 1280px;
      width: 100%;
      height: 100%;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      display: flex;
      align-items: center;
    }

    .hs-slider .swiper-slide {
      overflow: hidden;
    }

    /* ============ SLIDE LAYOUT ============ */


    .hs-bg {
      position: absolute;
      inset: 0;
      background: var(--surface);
    }

    .hs-bg::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg,
          var(--sky-1) 0%,
          var(--sky-2) 55%,
          var(--sky-3) 100%);
      clip-path: polygon(57% 0, 100% 0, 100% 100%, 43% 100%);
    }

    .hs-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg,
          transparent 0%,
          transparent 55.5%,
          rgba(255, 255, 255, 0.55) 56.5%,
          transparent 58%);
      clip-path: polygon(50% 0, 100% 0, 100% 100%, 36% 100%);
      pointer-events: none;
    }

    /* ============ TEXT CONTENT ============ */
    .hs-content {
      position: relative;
      z-index: 2;
      max-width: 520px;
      padding: 0;
    }

    .hs-title {
      font-size: 44px;
      line-height: 1.12;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--ink);
      margin-bottom: 18px;
    }

    .hs-slide[data-has-image="true"] .hs-title,
    .hs-slide[data-has-image="true"] .hs-desc {
      color: var(--ink);
    }

    .hs-desc {
      font-size: 18px;
      line-height: 1.5;
      color: var(--body-text);
      max-width: 450px;
      margin-bottom: 28px;
    }

    .hs-slide[data-has-image="true"] .hs-desc {
      color: var(--gray-600);
    }

    .hs-btn {
      display: inline-block;
      background: var(--ink);
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: var(--radius-btn);
      padding: 14px 30px;
      cursor: pointer;
      text-decoration: none;
      transition:
        background 0.2s ease,
        transform 0.2s ease;
    }

    .hs-btn:hover {
      background: var(--dark);
    }

    .hs-btn:active {
      transform: translateY(1px);
    }

    .hs-btn:focus-visible {
      outline: 3px solid var(--accent-dark);
      outline-offset: 3px;
    }

    .hs-content>* {
      opacity: 0;
    }

    @keyframes hsRiseIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .swiper-slide-active .hs-title {
      animation: hsRiseIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-delay: 0.08s;
    }

    .swiper-slide-active .hs-desc {
      animation: hsRiseIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-delay: 0.2s;
    }

    .swiper-slide-active .hs-btn {
      animation: hsRiseIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-delay: 0.32s;
    }

    /* ============ VISUAL: floating laptop stack ============ */
    .hs-visual {
      position: absolute;
      right: 32px;
      top: 50%;
      transform: translateY(-50%);
      width: 38%;
      max-width: 430px;
      min-width: 260px;
      z-index: 1;
    }

    .hs-stack {
      position: relative;
      width: 100%;
      padding-top: 100%;
    }

    .hs-laptop {
      position: absolute;
      top: 4%;
      left: 50%;
      transform: translateX(-50%);
      width: 86%;
    }

    .hs-screen {
      background: var(--chassis);
      border-radius: 14px 14px 3px 3px;
      padding: 7px;
      box-shadow: 0 26px 46px -12px rgba(10, 40, 90, 0.35);
    }

    .hs-glow {
      aspect-ratio: 16/10.5;
      border-radius: 6px;
      overflow: hidden;
      position: relative;
      background:
        radial-gradient(circle at 22% 28%, var(--glow-a) 0%, transparent 52%),
        radial-gradient(circle at 75% 18%, var(--glow-b) 0%, transparent 58%),
        radial-gradient(circle at 55% 85%, var(--glow-c) 0%, transparent 55%),
        linear-gradient(140deg, #170c3d, #0c1f4d);
      background-size: 160% 160%;
      animation: hsGlowDrift 14s ease-in-out infinite alternate;
    }

    .hs-glow::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(115deg,
          rgba(255, 255, 255, 0.1) 0 2px,
          transparent 2px 26px);
      mix-blend-mode: overlay;
    }

    @keyframes hsGlowDrift {
      from {
        background-position:
          0% 0%,
          0% 0%,
          0% 0%,
          0% 0%;
      }

      to {
        background-position:
          12% 10%,
          -10% 8%,
          6% -8%,
          0% 0%;
      }
    }

    .hs-glow--cool {
      --glow-a: #22d3ee;
      --glow-b: #3d7bff;
      --glow-c: #7c5cff;
    }

    .hs-glow--deep {
      --glow-a: #3d7bff;
      --glow-b: #22d3ee;
      --glow-c: #7c5cff;
    }

    .hs-hinge {
      height: 6px;
      background: linear-gradient(#242833, #171a20);
    }

    .hs-base {
      width: 114%;
      margin-left: -7%;
      height: 16px;
      margin-top: 2px;
      background: linear-gradient(#22252e, #14161c);
      clip-path: polygon(3% 0, 97% 0, 100% 100%, 0 100%);
      border-radius: 0 0 7px 7px;
      box-shadow: 0 18px 30px -10px rgba(0, 0, 0, 0.35);
    }

    .hs-shadow {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 15%;
      border-radius: var(--radius-global);
      box-shadow: 0 20px 30px -12px rgba(20, 30, 50, 0.28);
    }

    .hs-shadow-1 {
      bottom: 16%;
      width: 92%;
      background: linear-gradient(135deg, #eef1f4, var(--silver));
    }

    .hs-shadow-2 {
      bottom: 4%;
      width: 84%;
      background: linear-gradient(135deg, #2b2e37, var(--chassis));
    }

    /* ============ GLASS CONTROLS (signature element) ============ */
    .hs-controls {
      position: absolute;
      left: 50%;
      bottom: 34px;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 9px 14px;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 999px;
      backdrop-filter: blur(16px) saturate(140%);
      -webkit-backdrop-filter: blur(16px) saturate(140%);
      box-shadow:
        0 10px 30px rgba(15, 35, 70, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    .hs-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
      cursor: pointer;
      transition:
        background 0.2s ease,
        opacity 0.2s ease;
    }

    .hs-arrow:hover {
      color: var(--white);
      background: var(--navy);
    }

    .hs-arrow:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .hs-arrow.swiper-button-disabled {
      opacity: 0.35;
      cursor: default;
    }

    .hs-arrow.swiper-button-disabled:hover {
      background: transparent;
    }

    .hs-pagination {
      display: flex !important;
      align-items: center;
      gap: 7px;
      position: static !important;
      width: auto !important;
    }

    .hs-pagination .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      margin: 0 !important;
      border-radius: 50%;
      background: rgba(18, 20, 26, 0.32);
      opacity: 1;
      cursor: pointer;
      transition:
        width 0.3s ease,
        border-radius 0.3s ease,
        background 0.3s ease;
    }

    .hs-pagination .swiper-pagination-bullet:hover {
      background: rgba(18, 20, 26, 0.55);
    }

    .hs-pagination .swiper-pagination-bullet-active {
      width: 26px;
      border-radius: 5px;
      background: var(--ink);
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 900px) {
      .hs-slider {
        height: 480px;
      }

      .hs-title {
        font-size: 34px;
      }

      .hs-desc {
        font-size: 16px;
      }

      .hs-content {
        max-width: 420px;
        padding-left: 5%;
      }

      .hs-visual {
        right: 2%;
        width: 42%;
      }
    }

    @media (max-width: 640px) {

      .hs-slider {
        height: 500px;
      }

      .hs-bg::before {
        clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 100%);
      }

      .hs-bg::after {
        display: none;
      }

      .hs-content {
        order: 1;
        margin-top: -160px;
        max-width: none;
        padding: 0px 0 0;
                display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
      }

      .hs-visual {
        order: 2;
        position: relative;
        inset: auto;
        top: auto;
        right: auto;
        transform: none;
        width: 64%;
        max-width: 280px;
        margin: 20px auto 0;
      }

      .hs-title {
        font-size: 30px;
        line-height: 36px;
        text-align: center;
      }

      .hs-desc {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hs-glow {
        animation: none;
      }

      .hs-btn,
      .hs-arrow,
      .swiper-pagination-bullet {
        transition: none;
      }
    }

    /* logo strip */

    .logo-strip {
      background: #fff;
      padding: 40px 0;
      border-bottom: 1px solid var(--line-dark);
    }

    .logo-strip h2 {
      font-size: 38px;
      text-transform: capitalize;
      font-weight: 600;
      color: var(--ink);
      text-align: center;
      margin-bottom: 10px;
    }

    .logo-strip .strip-label {
      text-align: center;
      margin-bottom: 30px;
      font-size: 16.5px;
      line-height: 1.65;
      color: var(--gray-600);
    }

    .logo-strip .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-swiper .swiper-wrapper {
      transition-timing-function: linear !important;
    }

    .logo-chip {
      font-weight: 500;
      font-size: 22px;
      color: var(--slate);
      opacity: 0.55;
      filter: grayscale(1);
      transition: all var(--transition);
    }

    .logo-chip:hover {
      opacity: 1;
      filter: grayscale(0);
      color: var(--ink);
    }

    /* ==================== shared section helpers ==================== */

    .section {
      padding: 60px 0;
    }

    .section--tint {
      background: var(--gray-50);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy);
      margin: 0 0 14px;
    }

    /* .eyebrow::before {
      content: "";
      width: 22px;
      height: 2px;
      background: var(--accent);
      display: inline-block;
      border-radius: 2px;
    } */

    .section-head {
      max-width: 640px;
      margin: 0 0 48px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-title {
      font-size: 38px;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--ink);
      line-height: 1.2;
      margin: 0 0 14px;
    }

    .section-desc {
      font-size: 16.5px;
      line-height: 1.65;
      color: var(--gray-600);
      margin: 0;
    }

    /* ==================== about section ==================== */

    #about {
      border-bottom: 2px solid var(--gray-200);
    }

    .about-grid {
      border-radius: var(--radius-global);
    }

    .about-visual {
      position: relative;
    }

    .about-frame {
      position: relative;
      border-radius: var(--radius-global);
      overflow: hidden;
      aspect-ratio: 4/4.6;
      width: 100%;
      box-shadow: var(--shadow-lg);
    }

    .about-badge {
      position: absolute;
      left: 10%;
      bottom: 30px;
      background: #fff;
      border-radius: var(--radius-global);
      box-shadow: var(--shadow-lg);
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 16px;
      max-width: 260px;
    }

    .about-badge .num {
      font-size: 30px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
      white-space: nowrap;
    }

    .about-badge .label {
      font-size: 13px;
      color: var(--gray-600);
      line-height: 1.4;
      font-weight: 500;
    }

    .about-copy .section-title {
      font-size: 36px;
    }

    .about-lede {
      font-size: 17px;
      line-height: 1.7;
      color: var(--gray-600);
      margin: 0 0 28px;
    }

    .about-stats {
      margin: 0 0 32px;
      padding: 26px 0;
      border-top: 1px solid var(--gray-150);
      border-bottom: 1px solid var(--gray-150);
    }

    .about-stat .num {
      font-size: 28px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.01em;
    }

    .about-stat .label {
      font-size: 13px;
      color: var(--gray-600);
      margin-top: 4px;
      line-height: 1.4;
    }

    .about-points {
      margin: 0 0 32px;
    }

    .about-point {
      font-size: 15px;
      color: var(--gray-700);
      line-height: 1.5;
    }

    .about-point .check {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(1, 42, 135, 0.08);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .about-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      padding-bottom: 3px;
      border-bottom: 2px solid var(--gray-200);
      transition: border-color 0.15s var(--ease), gap 0.15s var(--ease);
    }

    .about-cta:hover {
      border-color: var(--navy);
      gap: 12px;
    }

    @media (max-width: 980px) {
      .about-badge {
        left: 16px;
      }
    }

    /* ==================== support section ==================== */

    .support-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    @media (min-width: 768px) {
      .support-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .support-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-global);
      padding: 34px 30px;
      background-color: var(--white);
      color: #fff;
      min-height: 240px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 2px 10px rgba(1, 20, 80, .05);
      border: 1px solid var(--gray-150);
    }

    .support-card .support-icon {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--navy);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      flex-shrink: 0;
    }

    .support-card h3 {
      position: relative;
      font-size: 19px;
      color: var(--ink);
      font-weight: 700;
      margin: 0 0 10px;
      letter-spacing: -0.01em;
    }

    .support-card p {
      font-size: 14.5px;
      line-height: 1.65;
      color: var(--gray-600);
      margin: 0 0 24px;
      flex: 1;
    }

    .support-cta {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      padding-bottom: 2px;
      border-bottom: 2px solid var(--gray-200);
      align-self: flex-start;
      transition: border-color .15s var(--ease);
    }

    .support-cta:hover {
      border-color: var(--navy);
      gap: 11px;
    }

    @media (max-width: 900px) {}

    /* ==================== FAQ section ==================== */

    .faq-side .section-title {
      font-size: 32px;
    }

    .faq-help-card {
      margin-top: 32px;
      padding: 26px;
      border-radius: var(--radius-global);
      background: var(--gray-50);
      border: 1px solid var(--gray-150);
    }

    .faq-help-card h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      margin: 0 0 8px;
    }

    .faq-help-card p {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.6;
      margin: 0 0 18px;
    }

    .faq-item {
      border-bottom: 1px solid var(--gray-150);
    }

    .faq-item:first-child {
      border-top: 1px solid var(--gray-150);
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: none;
      border: none;
      text-align: left;
      padding: 20px 4px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      color: var(--ink);
    }

    .faq-q .plus {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--gray-100);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s var(--ease), background 0.2s var(--ease);
    }

    .faq-q[aria-expanded="true"] .plus {
      transform: rotate(45deg);
      background: var(--navy);
      color: #fff;
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s var(--ease);
    }

    .faq-a[data-open="true"] {
      max-height: 300px;
    }

    .faq-a-inner {
      padding: 0 34px 20px 4px;
      font-size: 14.5px;
      line-height: 1.65;
      color: var(--gray-600);
    }

    @media (max-width: 900px) {}

    /* ==================== footer ==================== */

    .site-footer {
      position: relative;
      background: var(--navy-deep);
      color: rgba(255, 255, 255, 0.68);
      padding: 60px 0 0;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 30px);
      mix-blend-mode: overlay;
    }

    .footer-top {
      padding-bottom: 8rem;
    }

    .footer-brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .footer-brand img {
      height: 82px;
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 30px;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.85);
      transition: color 0.15s var(--ease);
    }

    .footer-social a:hover {
      color: #fff;
    }

    .footer-col h5 {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gray-200);
      margin: 0 0 22px;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .footer-col a {
      font-size: 14.5px;
      color: rgba(255, 255, 255, 0.82);
      transition: color 0.15s var(--ease);
    }

    .footer-col a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 26px 0;
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.45);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      flex-wrap: wrap;
    }

    .footer-bottom-links {
      display: flex;
      gap: 22px;
    }

    .footer-bottom-links a {
      color: rgba(255, 255, 255, 0.45);
      transition: color 0.15s var(--ease);
    }

    .footer-bottom-links a:hover {
      color: #fff;
    }

    @media (max-width: 900px) {}

    @media (max-width: 560px) {
      .logo img {
        height: 55px;
        width: auto;
      }

      .footer-bottom {
        justify-content: center;
        text-align: center;
      }
    }

    @media (max-width: 900px) {
      .section {
        padding: 60px 0;
      }

      .section-title {
        font-size: 30px !important;
      }

      .logo-strip h2 {
        font-size: 30px;
      }
      .pc-intro h3{
        font-size: 28px;
      }
      .pc-intro{
        padding: 34px 16px !important;
      }
    }

    /* ==================== product categories slider (Outcomes style) ==================== */

    .pc-section {
      background-image: url('../images/cat-back.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding-block: 60px;
      overflow: hidden;
    }

    .pc-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .pc-head-copy {
      max-width: 620px;
    }

    .pc-count {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 600;
      color: var(--gray-500);
      flex-shrink: 0;
      padding-bottom: 6px;
    }

    .pc-count .now {
      color: var(--ink);
      font-size: 16px;
    }

    .pc-viewport {
      overflow: hidden;
      margin: 0 -32px;
      padding: 0 32px;
      cursor: grab;
      touch-action: pan-y;
    }

    .pc-viewport.is-dragging {
      cursor: grabbing;
    }

    .pc-track {
      position: relative;
      /* ADD THIS */
      display: flex;
      gap: 20px;
      transition: transform 0.5s var(--ease);
      will-change: transform;

    }

    .pc-track.is-dragging {
      transition: none;
    }

    .pc-track a,
    .pc-track img,
    .pc-track video {
      -webkit-user-drag: none;
      user-select: none;
    }

    .pc-intro {
      position: relative;
      flex: 0 0 500px;
      border-radius: var(--radius-global);
      overflow: hidden;
      min-height: 500px;
      padding: 34px 30px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background-image: url('../images/side-cat.jpg');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .pc-intro::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(115deg,
          rgba(255, 255, 255, 0.06) 0 2px,
          transparent 2px 30px);
      mix-blend-mode: overlay;
    }

    .pc-intro-eyebrow {
      position: relative;
      z-index: 1;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.65);
      margin: 0 0 14px;
    }

    .pc-intro h3 {
      position: relative;
      z-index: 1;
      color: #fff;
      font-size: 30px;
      font-weight: 700;
      letter-spacing: -0.01em;
      line-height: 1.2;
      margin: 0;
    }

    .pc-card {
      position: relative;
      flex: 0 0 350px;
      border-radius: var(--radius-global);
      overflow: hidden;
      min-height: 500px;
      background: var(--gray-200);
    }

    .pc-card img,
    .pc-card video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.5s var(--ease);
    }

    .pc-card:hover img,
    .pc-card:hover video {
      transform: scale(1.06);
    }

    .pc-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15, 15, 15, 0) 40%, rgba(0, 0, 0, 0.9) 100%);
      pointer-events: none;
    }

    .pc-card-body {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      padding: 24px 22px;
      color: #fff;
    }

    .pc-card-body h4 {
      font-size: 24px;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin: 0 0 8px;
      line-height: 1.28;
    }

    .pc-card-body p {
      font-size: 13.5px;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.78);
      margin: 0 0 14px;
      max-width: 30ch;
    }

    .pc-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13.5px;
      font-weight: 600;
      color: #fff;
      padding-bottom: 2px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    }

    .pc-card-link svg {
      transition: transform 0.15s var(--ease);
    }

    .pc-card:hover .pc-card-link svg {
      transform: translateX(3px);
    }

    .pc-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-top: 36px;
    }

    .pc-progress {
      flex: 1;
      max-width: 280px;
      height: 5px;
      background: var(--glass-bg);
      outline: 1px solid var(--glass-border);
      /* border-radius: 999px; */
      backdrop-filter: blur(16px) saturate(140%);
      -webkit-backdrop-filter: blur(16px) saturate(140%);
      box-shadow:
        0 10px 30px rgba(15, 35, 70, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
      border-radius: 3px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .pc-progress::before {
      content: "";
      position: absolute;
      inset: -8px 0;
    }

    .pc-progress.is-dragging {
      cursor: grabbing;
    }

    .pc-progress-bar {
      height: 100%;
      width: 20%;
      background: var(--navy);
      border-radius: 3px;
      transition: width 0.5s var(--ease), transform 0.5s var(--ease);
    }

    .pc-controls {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 7px 12px;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 999px;
      backdrop-filter: blur(16px) saturate(140%);
      -webkit-backdrop-filter: blur(16px) saturate(140%);
      box-shadow:
        0 10px 30px rgba(15, 35, 70, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    .pc-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--gray-200);
      /* background: #fff; */
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
      cursor: pointer;
      transition: background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease);
    }

    .pc-arrow:hover {
      background: var(--navy);
      border-color: var(--navy);
      color: #fff;
    }

    @media (max-width: 640px) {

      .pc-intro,
      .pc-card {
        flex-basis: 78vw;
        min-height: 500px;
      }

      .pc-viewport {
        margin: 0 -20px;
        padding: 0 20px;
      }
      #career-link{
        display: none;
      }
    }

    /* ============ SOFTWARE SOLUTION SECTION ============ */
 .sw-section {
      position: relative;
      padding-block: 72px;
      background-color: var(--gray-50);
      overflow: hidden;
      color: var(--ink);
    }

    .sw-head {
      max-width: 640px;
      margin: 0 auto 44px;
      padding: 0 24px;
      text-align: center;
    }

    .sw-eyebrow {
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy);
      margin: 0 0 14px;
    }

    .sw-title {
      font-size: 38px;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--ink);
      line-height: 1.2;
      margin: 0 0 14px;
    }

    .sw-desc {
      font-size: 16.5px;
      line-height: 1.65;
      color: var(--gray-600);
      margin: 0;
    }

    /* ---- Side-by-side layout: tab list (left) + stage (right) ---- */

    .sw-layout {
      display: flex;
      align-items: stretch;
      gap: 24px;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ---- Tab list: clean white card, matches site's other cards ---- */

    .sw-tabbar {
      flex: 0 0 360px;
      min-width: 0;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(16px) saturate(140%);
      -webkit-backdrop-filter: blur(16px) saturate(140%);
      box-shadow:
        0 10px 30px rgba(15, 35, 70, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
        border-radius: var(--radius-global);
      padding: 10px;
      display: flex;
      flex-direction: column;
    }

    .sw-tabbar-scroll {
      position: relative;
      min-width: 0;
      overflow: hidden;
      border-radius: calc(var(--radius-global) - 8px);
    }


    .sw-tabbar-scroll.show-fade-start::before { opacity: 1; }
    .sw-tabbar-scroll.show-fade-end::after { opacity: 1; }

    .sw-tabbar-track {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 4px;
      max-height: 540px;
      overflow-y: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
    }

    .sw-tabbar-track::-webkit-scrollbar {
      display: none;
    }

    .sw-tab {
      position: relative;
      z-index: 2;
      text-align: left;
      background: transparent;
      border: none;
      color: var(--gray-600);
      font-family: var(--font-sans);
      font-size: 15px;
      font-weight: 500;
      padding: 13px 18px;
      border-radius: var(--radius-global);
      cursor: pointer;
      transition: color 0.3s var(--ease);
    }

    .sw-tab:hover:not(.active) {
      color: var(--ink);
    }

    .sw-tab.active {
      color: var(--white);
    }

    .sw-tab:focus-visible {
      outline: 2px solid var(--navy);
      outline-offset: 2px;
    }

    .sw-tab-indicator {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 0;
      background: var(--navy);
      border-radius: var(--radius-global);
      box-shadow: 0 6px 16px rgba(11, 42, 134, 0.25);
      transition: transform 0.45s var(--ease), height 0.45s var(--ease);
      z-index: 1;
    }

    /* ---- Stage: soft highlight + device frame ---- */

    .sw-stage {
      position: relative;
      flex: 1 1 auto;
      min-width: 0;
    }

    .sw-glow {
      position: absolute;
      inset: -14% -8% auto -8%;
      height: 130%;
      background: radial-gradient(closest-side, rgba(23, 182, 217, 0.25), transparent 70%);
      filter: blur(60px);
      pointer-events: none;
      z-index: 0;
    }

    .sw-frame {
      position: relative;
      z-index: 1;
      height: 100%;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(16px) saturate(140%);
      -webkit-backdrop-filter: blur(16px) saturate(140%);
      box-shadow:
        0 10px 30px rgba(15, 35, 70, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
        border-radius: var(--radius-global);
      overflow: hidden;
    }

    .sw-frame-chrome {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 18px;
      background: var(--gray-50);
      border-bottom: 1px solid var(--border-soft);
    }

    .sw-frame-chrome span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--border-soft);
    }

    .sw-frame-url {
      margin-left: 12px;
      font-size: 12px;
      color: var(--gray-600);
      background: var(--white);
      border: 1px solid var(--border-soft);
      padding: 4px 14px;
      border-radius: 6px;
    }

    .sw-frame-body {
      position: relative;
      height: 540px;
    }

    /* ---- Mockup panels (crossfade) ---- */

    .sw-mock {
      position: absolute;
      inset: 0;
      padding: 26px;
      opacity: 0;
      transform: scale(0.98);
      transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
      pointer-events: none;
      gap: 20px;
    }

    .sw-mock.active {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
    }

    .sw-mock-side {
      background: var(--gray-50);
      border: 1px solid var(--border-soft);
      border-radius: 14px;
      padding: 16px 14px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .sw-mock-side .bar {
      height: 9px;
      border-radius: 5px;
      background: var(--border-soft);
    }

    .sw-mock-side .bar.active-bar {
      background: var(--pane-accent, var(--navy));
      opacity: 0.9;
    }

    .sw-mock-main {
      display: flex;

      flex-direction: column;
      gap: 16px;
    }

    .sw-kpi-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .sw-kpi {
      background: var(--gray-50);
      border: 1px solid var(--border-soft);
      border-radius: 14px;
      padding: 16px;
    }

    .sw-kpi .num {
      font-size: 22px;
      font-weight: 700;
      color: var(--pane-accent, var(--navy));
    }

    .sw-kpi .lbl {
      font-size: 12px;
      color: var(--gray-600);
      margin-top: 4px;
    }

    .sw-chart {
      flex: 1;
      background: var(--gray-50);
      border: 1px solid var(--border-soft);
      border-radius: 14px;
      padding: 18px;
      display: flex;
      align-items: flex-end;
      gap: 8px;
    }

    .sw-chart i {
      display: block;
      flex: 1;
      background: linear-gradient(180deg, var(--pane-accent, var(--navy)), transparent);
      border-radius: 4px 4px 0 0;
      opacity: 0.8;
    }

    @media (prefers-reduced-motion: reduce) {

      .sw-mock,
      .sw-tab-indicator,
      .sw-tab,
      .sw-glow {
        transition: none !important;
      }
    }

    /* ---- Responsive ---- */

    @media (max-width: 900px) {
      .sw-layout {
        flex-direction: column;
      }

      .sw-tabbar {
        flex: 0 0 auto;
        width: 100%;
      }

      .sw-tabbar-track {
        max-height: 320px;
      }

      .sw-frame-body {
        height: 460px;
      }

      .sw-mock {
        grid-template-columns: 150px 1fr;
      }
    }

    @media (max-width: 767.98px) {
      .sw-title {
        font-size: 30px;
      }

      .sw-desc {
        font-size: 15px;
      }

      .sw-tab {
        font-size: 13.5px;
        padding: 11px 16px;
      }

      .sw-frame-body {
        height: 920px;
      }

      .sw-mock {
        grid-template-columns: 1fr;
      }

      .sw-mock-side {
        flex-direction: row;
        overflow-x: auto;
      }

      .sw-mock-side .bar {
        min-width: 56px;
      }

      .sw-kpi-row {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 480px) {
      .sw-tabbar-track {
        max-height: 260px;
      }

      .sw-kpi-row {
        grid-template-columns: 1fr;
      }
    }

    .software-title{
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1.2;
    margin: 0 0 14px;
    }

    .software-para {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0 0 28px;
}

    .software-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      padding-bottom: 3px;
      transition: border-color 0.15s var(--ease), gap 0.15s var(--ease);
    }