:root {
      --navy: #0d1628;
      --blue: #1677ff;
      --green: #2dbb39;
      --red: #ef3b2d;
      --cyan: #00c8e0;
      --cyan-2: #edfafe;
      --text: #0d1628;
      --muted: #64748b;
      --line: rgba(13,22,40,0.09);
      --surface: #ffffff;
      --surface-2: #f8fbff;
      --shadow: 0 18px 48px rgba(13,22,40,0.10);
      --radius: 24px;
      --container: 1280px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(22,119,255,.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    .container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(13,22,40,0.06);
      transition: transform 0.28s ease, opacity 0.28s ease;
      will-change: transform, opacity;
    }
    nav.header-hidden {
      transform: translateY(-110%);
      opacity: 0;
      pointer-events: none;
    }
    .nav-inner {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
      display: flex; align-items: stretch; justify-content: space-between;
      gap: 22px; padding: 12px 0;
    }
    .brand img { width: clamp(190px, 20vw, 310px); height: auto; object-fit: contain; display: block; }
    .nav-links { list-style: none; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
    .nav-links a { font-size: 14px; color: var(--muted); font-weight: 400; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
    .nav-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
    .dot-blue { background: #1677ff; }
    .dot-green { background: #2dbb39; }
    .dot-red { background: #ef3b2d; }
    .nav-links a:hover { color: var(--navy); }

    .hero { padding: 32px 0 28px; }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 40px;
      align-items: center;
    }
    .hero-left, .hero-right { min-width: 0; }
    .hero-left {
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .hero-right {
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 14px; border-radius: 999px;
      background: var(--cyan-2); border: 1px solid rgba(0,200,224,.20);
      color: #0b6c7c; font-size: 13px; font-weight: 700; letter-spacing: .3px;
      margin-bottom: 18px;
    }
    .hero-headline {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -1.9px;
      font-size: clamp(38px, 4.7vw, 58px);
      color: #000000;
      margin-bottom: 14px;
    }
    .hero-tagline {
      font-family: 'Sora', sans-serif;
      font-size: clamp(20px, 2vw, 24px);
      font-weight: 400;
      margin-bottom: 18px;
      letter-spacing: -.3px;
    }
    .hero-tagline .blue { color: var(--blue); }
    .hero-tagline .green { color: var(--green); }
    .hero-tagline .red { color: var(--red); }
    .hero-tagline .sep { color: var(--navy); margin: 0 6px; }
    .hero-desc {
      font-size: 16px; line-height: 1.75; color: var(--muted);
      max-width: 560px; margin-bottom: 22px;
      margin-top: 12px;
    }
    .hero-points {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px; margin-top: auto; padding-top: 28px; margin-bottom: 0;
    }
    .hero-point {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 13px 15px;
      box-shadow: 0 6px 18px rgba(13,22,40,0.05);
    }
    .hero-point strong { display: block; font-family: 'Sora', sans-serif; font-size: 16px; margin-bottom: 4px; }
    .hero-point span { font-size: 13px; color: var(--muted); line-height: 1.5; }

    .hero-card {
      background: var(--surface); border: 1px solid var(--line); border-radius: 26px;
      box-shadow: var(--shadow); overflow: hidden; height: 100%; display: flex; flex-direction: column;
    }
    .hero-photo-wrap { padding: 12px; background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%); }
    .hero-photo {
      width: 100%; border-radius: 20px; overflow: hidden; border: 1px solid rgba(13,22,40,0.08);
      aspect-ratio: 4/3; background: linear-gradient(180deg, #f8fbff 0%, #edf4fc 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .hero-photo img { width: 100%; height: 100%; object-fit: contain; object-position: center center; }
    .hero-slideshow { position: relative; width: 100%; height: 100%; }
    .hero-slide {
      position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out;
      display: flex; align-items: center; justify-content: center;
      padding: 14px; background: linear-gradient(180deg, #f8fbff 0%, #edf4fc 100%);
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide img {
      width: 100%; height: 100%; object-fit: contain; object-position: center center; display: block;
      border-radius: 16px; box-shadow: 0 8px 22px rgba(13,22,40,0.08); background: #ffffff;
    }
    .hero-slide-indicators { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.72); backdrop-filter: blur(6px); }
    .hero-slide-indicators span { width: 8px; height: 8px; border-radius: 999px; background: rgba(13, 32, 67, 0.22); transition: background-color .3s ease, transform .3s ease; }
    .hero-slide-indicators span.active { background: rgba(0, 98, 156, 0.95); transform: scale(1.1); }
    .hero-card-body { padding: 16px 18px 18px; }
    .hero-card-title { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
    .hero-card-text { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

    .stats { padding: 12px 0 4px; }
    .stats-grid {
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
    }
    .home-index-end {
      padding: 16px 0 10px;
    }
    .home-index-end-line {
      width: 100%;
      height: 1px;
      background: #dde3eb;
      border-radius: 999px;
    }
    .stat {
      background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
      padding: 18px 16px 20px; text-align: center; box-shadow: 0 8px 22px rgba(13,22,40,.05);
    }
    .stat-icon {
      width: 42px;
      height: 42px;
      margin: 0 auto 10px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f5f8fc;
      color: #aeb8c6;
      line-height: 1;
      border: 1px solid rgba(13,22,40,0.08);
    }
    .stat-icon svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      display: block;
    }
    .stat .num { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 800; margin-bottom: 6px; }
    .stat .label { font-size: 13px; color: var(--muted); }

    section.block { padding: 72px 0; }
    .section-head { margin-bottom: 28px; }
    .section-label {
      display: inline-block; color: #0b6c7c; background: var(--cyan-2); border: 1px solid rgba(0,200,224,.18);
      padding: 7px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .9px; text-transform: uppercase;
      margin-bottom: 14px;
    }
     .section-title { font-family: 'Sora', sans-serif; font-size: clamp(30px, 4vw, 46px); font-weight: 800; line-height: 1.1; letter-spacing: -1.2px; margin-bottom: 12px; }
    .section-title.with-icon {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      scroll-margin-top: 150px;
    }
    .nemt-section-tabs {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin: 14px 0 24px;
      padding: 6px;
      width: fit-content;
      border-radius: 999px;
      background: #f5f8fc;
      border: 1px solid rgba(148, 163, 184, 0.22);
    }
    .nemt-section-tabs:hover {
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    }
    .nemt-section-tab {
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 16px;
      border-radius: 999px;
      border: 1px solid transparent;
      background: transparent;
      color: #8795a7;
      font-family: 'Sora', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 1.35px;
      text-transform: uppercase;
      line-height: 1;
      cursor: pointer;
      transform: translateY(0);
      transition: background .22s ease, color .22s ease, box-shadow .22s ease, border-color .22s ease, transform .22s ease, opacity .22s ease;
    }
    .nemt-section-tab::after {
      content: '';
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 6px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      opacity: 0;
      transform: scaleX(.35);
      transform-origin: center;
      transition: opacity .22s ease, transform .22s ease;
    }
    .nemt-section-tab:nth-child(1) { color: #2563eb; }   /* Blue */
    .nemt-section-tab:nth-child(2) { color: #dc2626; }   /* Red */
    .nemt-section-tab:nth-child(3) { color: #16a34a; }   /* Green */
    .nemt-section-tab:nth-child(4) { color: #1e3a8a; }   /* Navy */

    .nemt-section-tab:hover,
    .nemt-section-tab:focus-visible {
      background: rgba(255,255,255,0.92);
      border-color: rgba(148, 163, 184, 0.28);
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10);
      transform: translateY(-2px);
      outline: none;
    }
    .nemt-section-tab:hover::after,
    .nemt-section-tab:focus-visible::after,
    .nemt-section-tab.is-active::after {
      opacity: .9;
      transform: scaleX(1);
    }
    .nemt-section-tab:nth-child(1):hover,
    .nemt-section-tab:nth-child(1).is-active { color: #1d4ed8; }

    .nemt-section-tab:nth-child(2):hover,
    .nemt-section-tab:nth-child(2).is-active { color: #b91c1c; }

    .nemt-section-tab:nth-child(3):hover,
    .nemt-section-tab:nth-child(3).is-active { color: #15803d; }

    .nemt-section-tab:nth-child(4):hover,
    .nemt-section-tab:nth-child(4).is-active { color: #1e40af; }

    .nemt-section-tab.is-active {
      background: #ffffff;
      border-color: rgba(148, 163, 184, 0.22);
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
      transform: translateY(-1px);
    }
    .nemt-tab-panel {
      display: none;
      animation: tabFade .22s ease both;
    }
    .nemt-tab-panel.is-active {
      display: block;
    }
    .nemt-tab-panel > .gallery-box,
    .nemt-tab-panel > .solution-summary-grid,
    .nemt-tab-panel > .user-levels-box,
    .nemt-tab-panel > .trip-tracking-box {
      width: 100%;
    }
    @keyframes tabFade {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .solution-summary-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin: 10px 0 24px;
    }
    .solution-summary-card {
      background: #ffffff;
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 22px;
      padding: 24px;
      box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
      min-height: 100%;
    }
    .solution-summary-card h4 {
      margin: 0 0 8px;
      font-family: 'Sora', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
    }
    .solution-summary-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }
    .section-title-icon {
      width: 64px;
      height: 64px;
      object-fit: cover;
      border-radius: 18px;
      border: 1px solid rgba(13,22,40,0.08);
      box-shadow: 0 8px 20px rgba(13,22,40,0.08);
      background: #ffffff;
      flex-shrink: 0;
    }
    .section-sub { max-width: 760px; color: var(--muted); font-size: 16px; line-height: 1.8; }
    .solution-about {
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 30px;
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 26px;
      box-shadow: 0 14px 34px rgba(13,22,40,0.06);
    }
    .solution-about h3 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(22px, 2vw, 30px);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 18px;
      letter-spacing: -0.4px;
    }
    .solution-about p {
      color: var(--muted);
      font-size: 15.5px;
      line-height: 1.85;
      margin-bottom: 15px;
    }
    .solution-about p:last-child { margin-bottom: 0; }
    .solution-about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      align-items: stretch;
      margin: 10px 0 30px;
      width: 100%;
    }
    .solution-about-grid .solution-about {
      max-width: none;
      width: 100%;
      margin: 0;
      height: auto;
    }
    .background-content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(440px, 0.92fr);
      gap: 34px;
      align-items: stretch;
      width: 100%;
    }
    .background-text-content {
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 4px 0;
    }
    .background-photo-wrap {
      margin: 0;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(13,22,40,0.08);
      box-shadow: 0 12px 28px rgba(13,22,40,0.09);
      background: #ffffff;
      width: 100%;
      height: 100%;
    }
    .background-photo-wrap img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 340px;
      max-height: 420px;
      object-fit: cover;
      object-position: center;
    }
    .gallery-box {
      margin: 10px 0 36px;
      padding: 26px;
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 30px;
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
    }
    .gallery-topbar {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid #e7edf5;
      flex-wrap: wrap;
    }
    .gallery-title {
      margin: 0 0 6px 0;
      font-family: 'Sora', sans-serif;
      font-size: clamp(22px, 2vw, 30px);
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.4px;
    }
    .gallery-note {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
      max-width: 760px;
    }
    .gallery-section + .gallery-section {
      margin-top: 28px;
    }
    .gallery-section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }
    .gallery-section-head h4 {
      margin: 0 0 4px;
      font-family: 'Sora', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--ink);
    }
    .gallery-section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.55;
      max-width: 760px;
    }
    .gallery-controls {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .gallery-nav {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid #dbe6f2;
      background: #ffffff;
      color: #344256;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
      transition: transform .16s ease, background .16s ease;
    }
    .gallery-nav:hover {
      background: #f1f6fb;
      transform: translateY(-1px);
    }
    .gallery-carousel {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      background: #f4f7fb;
      border: 1px solid rgba(148, 163, 184, 0.18);
      padding: 14px;
    }
    .gallery-track {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 3px 2px 8px;
    }
    .gallery-track::-webkit-scrollbar { display: none; }
    .gallery-slide {
      margin: 0;
      flex: 0 0 clamp(250px, 31vw, 390px);
      scroll-snap-align: center;
    }
    .gallery-slide.mobile {
      flex-basis: clamp(180px, 18vw, 250px);
    }
    .gallery-open {
      width: 100%;
      height: 100%;
      border: 0;
      padding: 0;
      margin: 0;
      text-align: left;
      background: #ffffff;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.22);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      transition: transform .18s ease, box-shadow .18s ease;
      font: inherit;
    }
    .gallery-open:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
    }
    .gallery-image-wrap {
      display: block;
      background: linear-gradient(180deg, #f7f9fc 0%, #edf3f9 100%);
      padding: 10px;
    }
    .gallery-slide.mobile .gallery-image-wrap {
      padding: 10px 20px;
    }
    .gallery-image-wrap img {
      display: block;
      width: 100%;
      height: 190px;
      object-fit: contain;
      border-radius: 14px;
      background: #ffffff;
    }
    .gallery-slide.mobile .gallery-image-wrap img {
      height: 310px;
    }
    .gallery-caption {
      padding: 13px 14px 15px;
      display: grid;
      gap: 4px;
    }
    .gallery-card-title {
      font-family: 'Sora', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
    }
    .gallery-card-text {
      color: var(--muted);
      font-size: 12.5px;
      line-height: 1.45;
    }
    .user-levels-box {
      margin-top: 24px;
      padding: 28px;
      border-radius: 26px;
      background: #ffffff;
      border: 1px solid rgba(148, 163, 184, 0.18);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    }
    .user-levels-title {
      margin: 0 0 18px;
      font-family: 'Sora', sans-serif;
      font-size: clamp(20px, 2vw, 28px);
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.3px;
    }
    .user-levels-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .user-level-card {
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      border: 1px solid rgba(148, 163, 184, 0.22);
      border-radius: 22px;
      padding: 20px;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
      min-height: 100%;
    }
    .user-level-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #f5f8fc;
      border: 1px solid rgba(13, 22, 40, 0.08);
      color: #aeb8c6;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }
    .user-level-icon svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.95;
      stroke-linecap: round;
      stroke-linejoin: round;
      display: block;
    }
    .user-level-card h4 {
      margin: 0 0 12px;
      font-family: 'Sora', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--ink);
    }
    .user-level-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 8px;
    }
    .user-level-card li {
      position: relative;
      padding-left: 18px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }
    .user-level-card li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.68em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #b8c0cc;
      transform: translateY(-50%);
    }
    .trip-tracking-box {
      margin-top: 24px;
      padding: 24px;
      border-radius: 28px;
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      border: 1px solid rgba(148, 163, 184, 0.18);
      box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
    }
    .trip-tracking-head {
      margin-bottom: 16px;
    }
    .trip-tracking-title {
      margin: 0;
      font-family: 'Sora', sans-serif;
      font-size: clamp(22px, 2vw, 30px);
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.35px;
    }
    .trip-timeline-shell {
      position: relative;
      overflow-x: auto;
      padding: 8px 2px 10px;
      scrollbar-width: thin;
      scrollbar-color: #cfd9e6 #eef4f9;
    }
    .trip-timeline-shell::-webkit-scrollbar {
      height: 10px;
    }
    .trip-timeline-shell::-webkit-scrollbar-track {
      background: #eef4f9;
      border-radius: 999px;
    }
    .trip-timeline-shell::-webkit-scrollbar-thumb {
      background: #cfd9e6;
      border-radius: 999px;
    }
    .trip-timeline {
      display: inline-flex;
      align-items: stretch;
      gap: 10px;
      min-width: max-content;
      padding: 4px 2px;
    }
    .trip-stage {
      width: 156px;
      min-height: 126px;
      padding: 12px;
      border-radius: 22px;
      border: 1px solid rgba(148, 163, 184, 0.18);
      background: #ffffff;
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 10px;
      position: relative;
    }
    .trip-stage-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }
    .trip-stage-icon {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--stage-bg, #eef4ff);
      color: var(--stage-color, #2563eb);
      border: 1px solid rgba(0,0,0,0.04);
      flex: 0 0 36px;
    }
    .trip-stage-icon svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      display: block;
    }
    .trip-stage-step {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 38px;
      height: 24px;
      border-radius: 999px;
      padding: 0 8px;
      background: var(--stage-bg, #eef4ff);
      color: var(--stage-color, #2563eb);
      font-family: 'Sora', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.8px;
    }
    .trip-stage-name {
      color: var(--ink);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      line-height: 1.45;
    }
    .trip-stage-arrow {
      width: 28px;
      min-height: 126px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #94a3b8;
      font-size: 24px;
      line-height: 1;
      flex: 0 0 28px;
      user-select: none;
    }
    .trip-stage.blue { --stage-color: #2563eb; --stage-bg: #eaf2ff; }
    .trip-stage.green { --stage-color: #16a34a; --stage-bg: #ecfbf1; }
    .trip-stage.teal { --stage-color: #0f9faa; --stage-bg: #e8fbfd; }
    .trip-stage.red { --stage-color: #dc2626; --stage-bg: #feeeee; }
    .trip-stage.orange { --stage-color: #ea580c; --stage-bg: #fff3eb; }
    .trip-stage.amber { --stage-color: #d97706; --stage-bg: #fff8e8; }
    .trip-stage.navy { --stage-color: #1e3a8a; --stage-bg: #eef2ff; }
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(8, 13, 25, 0.82);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 28px;
    }
    .lightbox.active {
      display: flex;
    }
    .lightbox-card {
      width: min(92vw, 1100px);
      max-height: 90vh;
      background: #ffffff;
      border-radius: 24px;
      padding: 18px;
      box-shadow: 0 28px 90px rgba(0,0,0,0.35);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .lightbox-card img {
      width: 100%;
      max-height: 78vh;
      object-fit: contain;
      border-radius: 16px;
      background: #f8fafc;
    }
    .lightbox-title {
      font-family: 'Sora', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      text-align: center;
    }
    .lightbox-close,
    .lightbox-arrow {
      position: fixed;
      z-index: 10000;
      border: 1px solid rgba(255,255,255,.28);
      background: rgba(255,255,255,.12);
      color: #ffffff;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
    }
    .lightbox-close {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      top: 22px;
      right: 24px;
      font-size: 30px;
      line-height: 1;
    }
    .lightbox-arrow {
      width: 48px;
      height: 72px;
      border-radius: 999px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 44px;
      line-height: 1;
    }
    .lightbox-prev { left: 24px; }
    .lightbox-next { right: 24px; }
    .lightbox-close:hover,
    .lightbox-arrow:hover {
      background: rgba(255,255,255,.22);
    }

    .solutions-grid, .features-grid { display: grid; gap: 18px; }
    .solutions-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .card {
      background: var(--surface); border: 1px solid var(--line); border-radius: 24px;
      padding: 22px; box-shadow: 0 10px 28px rgba(13,22,40,0.05);
      height: 100%;
    }
    .card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
    .card-icon { width: 62px; height: 62px; border-radius: 16px; object-fit: cover; }
    .card-arrow { font-size: 24px; color: #9aa8bd; }
    .card-label { color: #0b6c7c; text-transform: uppercase; letter-spacing: 1.3px; font-size: 11px; font-weight: 700; margin-bottom: 7px; }
    .card-title { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; line-height: 1.2; margin-bottom: 10px; }
    .card-desc { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 14px; }
    .tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag {
      padding: 6px 11px; border-radius: 999px; border: 1px solid var(--line);
      background: #fbfdff; font-size: 12px; font-weight: 600; color: var(--navy);
    }

    .feature-card { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: 0 8px 22px rgba(13,22,40,0.05); }
    .feature-icon { font-size: 28px; margin-bottom: 12px; }
    .feature-card h3 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 9px; }
    .feature-card p { font-size: 14px; line-height: 1.7; color: var(--muted); }

    .process-shell {
      background: linear-gradient(180deg, #0d1628 0%, #13213c 100%);
      border-radius: 30px; padding: 34px; box-shadow: var(--shadow);
    }
    .process-shell .section-label { background: rgba(0,200,224,.10); border-color: rgba(0,200,224,.20); color: #7ce7f4; }
    .process-shell .section-title { color: white; }
    .process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
    .step { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; padding: 22px; }
    .step-num { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: #7ce7f4; margin-bottom: 10px; }
    .step h3 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: white; margin-bottom: 8px; }
    .step p { font-size: 14px; color: #b7c4d8; line-height: 1.7; }

    .contact-card {
      display: grid; grid-template-columns: .95fr 1.05fr; gap: 26px;
      background: var(--surface); border: 1px solid var(--line); border-radius: 26px;
      padding: 30px; box-shadow: var(--shadow);
    }
    .contact-card h3 { font-family: 'Sora', sans-serif; font-size: clamp(28px, 3vw, 38px); font-weight: 800; line-height: 1.14; margin-bottom: 12px; }
    .contact-card p { color: var(--muted); line-height: 1.8; font-size: 15px; }
    .contact-list { display: grid; gap: 14px; }
    .contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
    .contact-item:last-child { border-bottom: none; }
    .contact-badge { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); flex-shrink: 0; font-size: 18px; }
    .contact-item strong { display: block; margin-bottom: 4px; font-size: 15px; }
    .contact-item span, .contact-item a { color: var(--muted); font-size: 14px; line-height: 1.6; }
    .email-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      margin-top: 18px; background: var(--navy); color: white; border-radius: 999px;
      padding: 14px 22px; font-weight: 700; font-size: 15px;
      box-shadow: 0 10px 28px rgba(13,22,40,0.14);
    }

    footer { border-top: 1px solid rgba(13,22,40,0.08); padding: 22px 0 40px; margin-top: 8px; }
    .footer-inner {
      width: min(var(--container), calc(100% - 40px)); margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
      color: var(--muted); font-size: 13px;
    }
    .footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
    .footer-links a:hover { color: var(--navy); }

    @media (max-width: 1120px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-left { order: 1; }
      .hero-right { order: 2; }
      .solutions-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-card { grid-template-columns: 1fr; }
    }
    @media (max-width: 760px) {
      .container, .nav-inner, .footer-inner { width: min(var(--container), calc(100% - 24px)); }
      .brand img { width: min(66vw, 250px); height: auto; }
      .nav-links { display: none; }
      .hero { padding-top: 30px; }
      .hero-points { grid-template-columns: 1fr; padding-top: 18px; }
      .stats-grid, .solutions-grid, .features-grid, .process-grid { grid-template-columns: 1fr; }
      section.block { padding: 56px 0; }
      .process-shell { padding: 24px; }
      .contact-card { padding: 22px; }
      .solution-about { padding: 20px; }
      .solution-about { padding: 22px; }
      .solution-about-grid { grid-template-columns: 1fr; gap: 18px; }
      .solution-summary-grid { grid-template-columns: 1fr; }
      .background-content-layout { grid-template-columns: 1fr; gap: 18px; }
      .background-photo-wrap { order: -1; }
      .background-photo-wrap img { min-height: 240px; max-height: 320px; }
      .gallery-box { padding: 18px; }
      .gallery-carousel { padding: 12px; }
      .gallery-slide { flex-basis: 82vw; }
      .gallery-slide.mobile { flex-basis: 72vw; }
      .gallery-image-wrap img { height: 165px; }
      .gallery-slide.mobile .gallery-image-wrap img { height: 285px; }
      .user-levels-box { padding: 18px; }
      .user-levels-grid { grid-template-columns: 1fr; }
      .trip-tracking-box { padding: 18px; }
      .trip-timeline-shell { margin-right: -4px; }
      .trip-timeline { gap: 8px; }
      .trip-stage { width: 150px; min-height: 122px; padding: 11px; }
      .trip-stage-arrow { width: 22px; min-height: 122px; font-size: 20px; }
      .lightbox { padding: 16px; }
      .lightbox-card { padding: 12px; border-radius: 18px; }
      .lightbox-arrow { width: 40px; height: 58px; font-size: 34px; }
      .lightbox-prev { left: 10px; }
      .lightbox-next { right: 10px; }
      .section-title.with-icon { gap: 12px; }
      .section-title-icon { width: 52px; height: 52px; border-radius: 14px; }
      footer { padding-bottom: 28px; }
      .hero-card-body { padding: 16px; }
    }
  
    /* ===== Rebalanced content boxes update ===== */
    .nemt-tab-panel,
    .nemt-tab-panel * {
      box-sizing: border-box;
    }

    .nemt-tab-panel > .solution-about-grid,
    .nemt-tab-panel > .gallery-box,
    .nemt-tab-panel > .user-levels-box,
    .nemt-tab-panel > .trip-tracking-box {
      width: 100%;
      max-width: none;
      margin-left: 0;
      margin-right: 0;
    }

    /* handles the nested wrapper in the current background/problem panels */
    .nemt-tab-panel > .solution-about-grid > .solution-about-grid {
      display: block;
      width: 100%;
      margin: 0;
    }

    .nemt-tab-panel > .solution-about-grid > .solution-about-grid > .solution-about {
      margin: 0;
    }

    .solution-about {
      padding: 32px;
      border-radius: 28px;
      overflow: hidden;
    }

    .background-info-card {
      padding: 34px 34px 32px;
    }

    .background-content-layout {
      grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
      gap: 32px;
      align-items: center;
    }

    .background-text-content {
      min-width: 0;
      align-self: center;
    }

    .background-photo-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
      height: auto;
      min-height: 0;
      background: linear-gradient(180deg, #fbfdff 0%, #f3f7fb 100%);
    }

    .background-photo-wrap img {
      width: 100%;
      height: auto;
      min-height: 0;
      max-height: 390px;
      object-fit: contain;
      object-position: center;
      border-radius: 18px;
    }

    .gallery-box,
    .user-levels-box,
    .trip-tracking-box {
      width: 100%;
      padding: 30px;
      border-radius: 28px;
    }

    .solution-summary-grid,
    .user-levels-grid {
      align-items: stretch;
    }

    .solution-summary-card,
    .user-level-card {
      height: 100%;
    }

    .trip-timeline-shell {
      width: 100%;
      overflow-x: auto;
      overflow-y: visible;
      padding-bottom: 8px;
    }

    .trip-timeline {
      min-width: max-content;
    }

    .trip-stage {
      min-width: 164px;
    }

    #contact .contact-card {
      width: min(var(--container), calc(100% - 40px));
      display: grid;
      grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
      gap: 32px;
      align-items: start;
      padding: 34px;
      border-radius: 28px;
    }

    #contact .contact-card > div {
      min-width: 0;
    }

    #contact .contact-list {
      background: linear-gradient(180deg, #fbfdff 0%, #f6f9fc 100%);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 6px 20px;
    }

    #contact .contact-item {
      padding: 18px 0;
    }

    #contact .contact-badge {
      background: #eef3f8;
    }

    @media (max-width: 1200px) {
      .background-content-layout {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .background-photo-wrap {
        order: 0;
      }

      .background-photo-wrap img {
        max-height: 460px;
      }

      #contact .contact-card {
        grid-template-columns: 1fr;
        width: min(var(--container), calc(100% - 32px));
      }
    }

    @media (max-width: 760px) {
      .solution-about,
      .background-info-card,
      .gallery-box,
      .user-levels-box,
      .trip-tracking-box,
      #contact .contact-card {
        padding: 22px;
      }

      .background-photo-wrap {
        padding: 8px;
      }

      .background-photo-wrap img {
        max-height: none;
      }

      #contact .contact-card {
        width: min(var(--container), calc(100% - 24px));
      }

      #contact .contact-list {
        padding: 4px 14px;
      }
    }

  
    /* ===== Whole-page layout refinements ===== */
    :root {
      --container: 1360px;
    }

    body {
      background:
        radial-gradient(circle at top left, rgba(22,119,255,.06), transparent 28%),
        linear-gradient(180deg, #fbfdff 0%, #f5f8fc 100%);
    }

    .container,
    .nav-inner {
      width: min(var(--container), calc(100% - 56px));
    }

    main > .container {
      padding-bottom: 28px;
    }

    section.block {
      padding: 56px 0;
    }

    .hero-grid {
      grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
      gap: 28px;
      align-items: stretch;
    }

    .hero-left,
    .hero-right {
      min-height: 100%;
    }

    .hero-card,
    .hero-visual,
    .hero-copy-card {
      height: 100%;
    }

    .hero-copy-card,
    .hero-visual {
      border-radius: 26px;
      box-shadow: 0 16px 34px rgba(13,22,40,0.08);
    }

    .hero-copy-card {
      padding: 28px;
    }

    .hero-info-grid {
      gap: 14px;
      margin-top: 18px;
    }

    .hero-info-card {
      min-height: 132px;
      padding: 18px 16px;
      border-radius: 20px;
    }

    .stats-grid {
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 16px;
      align-items: stretch;
    }

    .stat {
      min-height: 126px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-radius: 20px;
      box-shadow: 0 10px 24px rgba(13,22,40,.05);
    }

    .section-shell,
    .gallery-box,
    .solution-about,
    .user-levels-box,
    .trip-tracking-box,
    .contact-card {
      border-radius: 28px;
      box-shadow: 0 14px 32px rgba(13,22,40,0.06);
    }

    .section-title-row {
      gap: 16px;
      margin-bottom: 18px;
      align-items: center;
    }

    .section-title-icon {
      width: 58px;
      height: 58px;
      border-radius: 16px;
    }

    .section-title {
      font-size: clamp(34px, 4vw, 56px);
      line-height: 1.06;
      letter-spacing: -1.2px;
    }

    .nemt-section-tabs {
      margin: 12px 0 22px;
    }

    .nemt-tab-panel > .solution-about-grid,
    .nemt-tab-panel > .gallery-box,
    .nemt-tab-panel > .user-levels-box,
    .nemt-tab-panel > .trip-tracking-box,
    .nemt-tab-panel > .solution-summary-grid {
      width: 100%;
      max-width: none;
    }

    .solution-about {
      padding: 28px 28px 26px;
      margin: 0;
      overflow: hidden;
    }

    .solution-about h3 {
      margin-bottom: 18px;
    }

    .solution-about-grid {
      width: 100%;
      margin: 10px 0 28px;
      gap: 22px;
    }

    .background-info-card {
      width: 100%;
    }

    .background-content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
      gap: 28px;
      align-items: center;
      width: 100%;
    }

    .background-text-content {
      min-width: 0;
      padding-right: 4px;
    }

    .background-text-content p {
      font-size: 15px;
      line-height: 1.85;
      margin-bottom: 12px;
    }

    .background-photo-wrap {
      margin: 0;
      width: 100%;
      min-height: 0;
      background: linear-gradient(180deg, #fcfdff 0%, #f6f9fc 100%);
      border: 1px solid rgba(13,22,40,0.08);
      border-radius: 24px;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(13,22,40,0.07);
    }

    .background-photo-wrap img {
      width: 100%;
      height: auto;
      min-height: 0;
      max-height: 340px;
      object-fit: contain;
      object-position: center;
      border-radius: 16px;
    }

    .solution-summary-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin: 8px 0 22px;
    }

    .solution-summary-card {
      padding: 22px;
      border-radius: 20px;
    }

    .gallery-box {
      padding: 24px;
      margin: 10px 0 26px;
    }

    .gallery-box h3,
    .user-levels-box h3,
    .trip-tracking-box h3 {
      margin-bottom: 16px;
    }

    .desktop-gallery-track,
    .mobile-gallery-track {
      gap: 14px;
    }

    .gallery-slide {
      border-radius: 18px;
      overflow: hidden;
    }

    .user-levels-box {
      padding: 24px;
      margin-top: 24px;
    }

    .user-levels-grid {
      gap: 18px;
      align-items: stretch;
    }

    .user-level-card {
      height: 100%;
      padding: 22px 20px;
      border-radius: 22px;
    }

    .trip-tracking-box {
      padding: 24px;
      margin-top: 24px;
    }

    .trip-timeline-shell {
      overflow-x: auto;
      overflow-y: visible;
      padding-bottom: 6px;
    }

    .trip-timeline {
      min-width: max-content;
      padding-top: 8px;
      gap: 14px;
    }

    .trip-stage {
      min-width: 158px;
      border-radius: 18px;
      padding: 14px 12px;
    }

    #contact .contact-card {
      width: 100%;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 28px;
      padding: 28px;
      align-items: stretch;
    }

    #contact .contact-card h3 {
      font-size: clamp(30px, 3vw, 42px);
    }

    #contact .contact-list {
      gap: 0;
      background: linear-gradient(180deg, #fbfdff 0%, #f6f9fc 100%);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 2px 18px;
    }

    #contact .contact-item {
      padding: 18px 0;
    }

    .footer-links {
      padding-top: 18px;
      gap: 18px;
    }

    @media (max-width: 1200px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .background-content-layout {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .background-photo-wrap {
        order: 0;
      }

      .background-photo-wrap img {
        max-height: 380px;
      }

      #contact .contact-card {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 860px) {
      .container,
      .nav-inner {
        width: min(var(--container), calc(100% - 28px));
      }

      section.block {
        padding: 44px 0;
      }

      .hero-copy-card,
      .solution-about,
      .gallery-box,
      .user-levels-box,
      .trip-tracking-box,
      #contact .contact-card {
        padding: 22px;
      }

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

      .solution-summary-grid,
      .user-levels-grid {
        grid-template-columns: 1fr;
      }

      .section-title {
        font-size: clamp(28px, 8vw, 42px);
      }
    }

    @media (max-width: 560px) {
      .stats-grid {
        grid-template-columns: 1fr;
      }

      .nemt-section-tabs {
        width: 100%;
        justify-content: flex-start;
      }

      .nemt-section-tab {
        padding: 8px 12px;
        font-size: 10px;
      }

      .background-photo-wrap {
        padding: 8px;
      }

      .background-photo-wrap img {
        max-height: 260px;
      }

      .trip-stage {
        min-width: 140px;
      }
    }

  
    /* ===== Overflow and box-balance fixes ===== */
    .container,
    .nav-inner,
    .footer-inner {
      width: min(var(--container), calc(100% - 48px));
      max-width: 100%;
    }

    section.block,
    .nemt-tab-panels,
    .nemt-tab-panel,
    .solution-about-grid,
    .solution-about,
    .background-content-layout,
    .background-text-content,
    .background-photo-wrap,
    .gallery-box,
    .user-levels-box,
    .trip-tracking-box,
    .contact-card,
    .contact-card > *,
    .solution-summary-grid,
    .solution-summary-card,
    .user-levels-grid,
    .user-level-card,
    .gallery-carousel,
    .gallery-track,
    .trip-timeline-shell {
      max-width: 100%;
      min-width: 0;
      box-sizing: border-box;
    }

    .nemt-tab-panel {
      overflow: hidden;
    }

    .section-title-row {
      flex-wrap: wrap;
      align-items: center;
    }

    .section-title {
      word-break: break-word;
    }

    .solution-about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      width: 100%;
    }

    .solution-about {
      padding: 28px;
      overflow: hidden;
    }

    .background-content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr) !important;
      gap: 24px;
      align-items: center;
      width: 100%;
    }

    .background-text-content {
      padding-right: 2px;
    }

    .background-text-content p {
      font-size: 15px;
      line-height: 1.8;
    }

    .background-photo-wrap {
      width: 100%;
      height: auto;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #fcfdff 0%, #f7faff 100%);
      overflow: hidden;
    }

    .background-photo-wrap img {
      display: block;
      width: 100%;
      max-width: 100%;
      height: auto !important;
      min-height: 0 !important;
      max-height: 340px;
      object-fit: contain !important;
      object-position: center;
      border-radius: 16px;
    }

    .gallery-box,
    .user-levels-box,
    .trip-tracking-box,
    .contact-card,
    .solution-about {
      overflow: hidden;
    }

    .gallery-track,
    .trip-timeline-shell {
      overflow-x: auto;
      overflow-y: hidden;
    }

    .contact-card {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 26px;
      align-items: stretch;
    }

    .contact-list {
      max-width: 100%;
    }

    @media (max-width: 1180px) {
      .background-content-layout {
        grid-template-columns: 1fr !important;
      }
      .background-photo-wrap img {
        max-height: 380px;
      }
      .contact-card {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .container,
      .nav-inner,
      .footer-inner {
        width: min(var(--container), calc(100% - 24px));
      }
      .solution-about,
      .gallery-box,
      .user-levels-box,
      .trip-tracking-box,
      .contact-card {
        padding: 20px;
      }
      .background-photo-wrap {
        padding: 8px;
      }
      .background-photo-wrap img {
        max-height: 260px;
      }
    }


    /* === Tabs: smaller, no underline, not bold === */
    .nemt-section-tab {
      font-size: 9.5px !important;
      font-weight: 400 !important;
      letter-spacing: 1.15px !important;
      padding: 8px 14px !important;
      text-decoration: none !important;
    }

    .nemt-section-tab::after {
      display: none !important;
      content: none !important;
    }

    .nemt-section-tab.is-active,
    .nemt-section-tab:hover,
    .nemt-section-tab:focus-visible {
      font-weight: 400 !important;
      text-decoration: none !important;
    }

    .nemt-section-tabs {
      gap: 8px !important;
      padding: 5px !important;
    }


    /* === Problem tab professional text + photo layout === */
    .problem-content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 28px;
      align-items: stretch;
      width: 100%;
      max-width: 100%;
    }

    .problem-text-content {
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .problem-text-content p {
      font-size: 15px;
      line-height: 1.85;
      color: var(--muted);
      margin: 0 0 16px 0;
    }

    .problem-text-content p:last-child {
      margin-bottom: 0;
    }

    .problem-photo-wrap {
      width: 100%;
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px;
      border-radius: 22px;
      overflow: hidden;
      background: linear-gradient(180deg, #fcfdff 0%, #f6f9fc 100%);
      border: 1px solid rgba(148, 163, 184, 0.18);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    }

    .problem-photo-wrap img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 320px;
      object-fit: cover;
      object-position: center;
      border-radius: 16px;
    }

    @media (max-width: 980px) {
      .problem-content-layout {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .problem-photo-wrap {
        order: -1;
      }

      .problem-photo-wrap img {
        min-height: 260px;
      }
    }


    /* Ensure tab panels display reliably */
    .nemt-tab-panel { display: none; }
    .nemt-tab-panel.is-active { display: block; }


    /* Final tab-panel reliability and balanced tab content layout */
    .nemt-tab-panel { display: none !important; }
    .nemt-tab-panel.is-active { display: block !important; }

    .nemt-tab-panel .solution-about-grid {
      width: 100%;
      max-width: 100%;
      display: grid;
      grid-template-columns: 1fr;
    }

    .background-content-layout {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
      gap: 28px !important;
      align-items: center !important;
      width: 100% !important;
      max-width: 100% !important;
    }

    .background-text-content,
    .background-photo-wrap {
      min-width: 0 !important;
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }

    .background-photo-wrap {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      padding: 14px !important;
      overflow: hidden !important;
    }

    .background-photo-wrap img {
      display: block !important;
      width: 100% !important;
      height: auto !important;
      max-width: 100% !important;
      max-height: 380px !important;
      object-fit: contain !important;
      object-position: center !important;
    }

    @media (max-width: 980px) {
      .background-content-layout {
        grid-template-columns: 1fr !important;
      }
    }


    /* Problem tab text/photo refinement */
    .nemt-tab-panel[data-tab-panel="problem"] .solution-about {
      padding: 32px;
    }

    .nemt-tab-panel[data-tab-panel="problem"] .background-content-layout {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
      gap: 30px !important;
      align-items: center !important;
    }

    .nemt-tab-panel[data-tab-panel="problem"] .background-text-content {
      justify-content: center !important;
    }

    .nemt-tab-panel[data-tab-panel="problem"] .background-text-content p {
      font-size: 15px !important;
      line-height: 1.85 !important;
      margin-bottom: 16px !important;
    }

    .nemt-tab-panel[data-tab-panel="problem"] .background-photo-wrap {
      min-height: 100%;
      padding: 12px !important;
    }

    .nemt-tab-panel[data-tab-panel="problem"] .background-photo-wrap img {
      width: 100% !important;
      height: auto !important;
      max-height: 390px !important;
      object-fit: contain !important;
      object-position: center !important;
      border-radius: 16px !important;
    }

    @media (max-width: 980px) {
      .nemt-tab-panel[data-tab-panel="problem"] .background-content-layout {
        grid-template-columns: 1fr !important;
      }

      .nemt-tab-panel[data-tab-panel="problem"] .background-photo-wrap img {
        max-height: none !important;
      }
    }


    /* Background tab: 40% text / 60% photo professional layout */
    .nemt-tab-panel[data-tab-panel="background"] .solution-about {
      padding: 32px;
    }

    .nemt-tab-panel[data-tab-panel="background"] .background-content-layout {
      grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) !important;
      gap: 30px !important;
      align-items: center !important;
      width: 100% !important;
    }

    .nemt-tab-panel[data-tab-panel="background"] .background-text-content {
      justify-content: center !important;
      min-width: 0 !important;
    }

    .nemt-tab-panel[data-tab-panel="background"] .background-text-content p {
      font-size: 15px !important;
      line-height: 1.85 !important;
      margin-bottom: 16px !important;
      color: var(--muted) !important;
    }

    .nemt-tab-panel[data-tab-panel="background"] .background-photo-wrap {
      width: 100% !important;
      min-width: 0 !important;
      padding: 12px !important;
      border-radius: 24px !important;
      background: linear-gradient(180deg, #fcfdff 0%, #f6f9fc 100%) !important;
      border: 1px solid rgba(148, 163, 184, 0.18) !important;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
    }

    .nemt-tab-panel[data-tab-panel="background"] .background-photo-wrap img {
      width: 100% !important;
      height: auto !important;
      max-height: 430px !important;
      object-fit: contain !important;
      object-position: center !important;
      border-radius: 16px !important;
      display: block !important;
    }

    @media (max-width: 980px) {
      .nemt-tab-panel[data-tab-panel="background"] .background-content-layout {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
      }

      .nemt-tab-panel[data-tab-panel="background"] .background-photo-wrap img {
        max-height: none !important;
      }
    }


    /* Problem tab: 40% text / 60% photo professional layout */
    .nemt-tab-panel[data-tab-panel="problem"] .solution-about {
      padding: 32px;
    }

    .nemt-tab-panel[data-tab-panel="problem"] .background-content-layout {
      grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) !important;
      gap: 30px !important;
      align-items: center !important;
      width: 100% !important;
    }

    .nemt-tab-panel[data-tab-panel="problem"] .background-text-content {
      justify-content: center !important;
      min-width: 0 !important;
    }

    .nemt-tab-panel[data-tab-panel="problem"] .background-text-content p {
      font-size: 15px !important;
      line-height: 1.85 !important;
      margin-bottom: 16px !important;
      color: var(--muted) !important;
    }

    .nemt-tab-panel[data-tab-panel="problem"] .background-photo-wrap {
      width: 100% !important;
      min-width: 0 !important;
      padding: 12px !important;
      border-radius: 24px !important;
      background: linear-gradient(180deg, #fcfdff 0%, #f6f9fc 100%) !important;
      border: 1px solid rgba(148, 163, 184, 0.18) !important;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
    }

    .nemt-tab-panel[data-tab-panel="problem"] .background-photo-wrap img {
      width: 100% !important;
      height: auto !important;
      max-height: 430px !important;
      object-fit: contain !important;
      object-position: center !important;
      border-radius: 16px !important;
      display: block !important;
    }

    @media (max-width: 980px) {
      .nemt-tab-panel[data-tab-panel="problem"] .background-content-layout {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
      }

      .nemt-tab-panel[data-tab-panel="problem"] .background-photo-wrap img {
        max-height: none !important;
      }
    }


    /* Solution tab: match Background/Problem text-photo format */
    .nemt-tab-panel[data-tab-panel="solution"] .solution-about {
      padding: 32px;
    }

    .nemt-tab-panel[data-tab-panel="solution"] .background-content-layout {
      grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) !important;
      gap: 30px !important;
      align-items: center !important;
      width: 100% !important;
    }

    .nemt-tab-panel[data-tab-panel="solution"] .background-text-content {
      justify-content: center !important;
      min-width: 0 !important;
    }

    .nemt-tab-panel[data-tab-panel="solution"] .background-text-content p {
      font-size: 14.5px !important;
      line-height: 1.78 !important;
      margin-bottom: 14px !important;
      color: var(--muted) !important;
    }

    .nemt-tab-panel[data-tab-panel="solution"] .background-photo-wrap {
      width: 100% !important;
      min-width: 0 !important;
      padding: 12px !important;
      border-radius: 24px !important;
      background: linear-gradient(180deg, #fcfdff 0%, #f6f9fc 100%) !important;
      border: 1px solid rgba(148, 163, 184, 0.18) !important;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
    }

    .nemt-tab-panel[data-tab-panel="solution"] .background-photo-wrap img {
      width: 100% !important;
      height: auto !important;
      max-height: 430px !important;
      object-fit: contain !important;
      object-position: center !important;
      border-radius: 16px !important;
      display: block !important;
    }

    @media (max-width: 980px) {
      .nemt-tab-panel[data-tab-panel="solution"] .background-content-layout {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
      }

      .nemt-tab-panel[data-tab-panel="solution"] .background-photo-wrap img {
        max-height: none !important;
      }
    }



/* Updated SOLUTION tab layout with two stacked images */
.nemt-tab-panel[data-tab-panel="solution"] .solution-about {
  padding: 34px;
}

.nemt-tab-panel[data-tab-panel="solution"] .solution-layout-two-images {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
  gap: 28px !important;
  align-items: start !important;
}

.nemt-tab-panel[data-tab-panel="solution"] .solution-text-content {
  min-width: 0;
}

.nemt-tab-panel[data-tab-panel="solution"] .solution-text-content p {
  font-size: 14.5px !important;
  line-height: 1.8 !important;
  color: var(--muted) !important;
  margin: 0 0 14px 0 !important;
}

.nemt-tab-panel[data-tab-panel="solution"] .solution-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  width: 100%;
}

.nemt-tab-panel[data-tab-panel="solution"] .solution-photo-card {
  width: 100% !important;
  min-width: 0 !important;
  padding: 12px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, #fcfdff 0%, #f6f9fc 100%) !important;
  border: 1px solid rgba(148, 163, 184, 0.18) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
}

.nemt-tab-panel[data-tab-panel="solution"] .solution-photo-card img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: 300px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 16px !important;
  background: #fff;
}

@media (max-width: 1100px) {
  .nemt-tab-panel[data-tab-panel="solution"] .solution-layout-two-images {
    grid-template-columns: 1fr !important;
  }

  .nemt-tab-panel[data-tab-panel="solution"] .solution-photo-card img {
    max-height: none !important;
  }
}


    /* Homepage technical value boxes */
    .hero-point {
      min-height: 138px;
    }

    .hero-point strong {
      line-height: 1.25;
    }

    .hero-point span {
      line-height: 1.55;
    }


    /* Homepage six technical value boxes */
    .hero-points {
      grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
      gap: 14px !important;
      align-items: stretch;
    }

    .hero-point {
      min-height: 142px;
      height: 100%;
    }

    @media (max-width: 900px) {
      .hero-points {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      }
    }

    @media (max-width: 560px) {
      .hero-points {
        grid-template-columns: 1fr !important;
      }
    }


    /* Slideshow text block refinement */
    .hero-card-body {
      padding: 20px 22px 22px !important;
    }

    .hero-card-title {
      font-size: 18px !important;
      line-height: 1.35 !important;
      margin-bottom: 10px !important;
    }

    .hero-card-text {
      font-size: 13.5px !important;
      line-height: 1.65 !important;
      color: var(--muted) !important;
    }

    .hero-card-text p {
      margin: 0 0 10px 0;
    }

    .hero-card-text p:last-child {
      margin-bottom: 0;
    }



    /* Problem tab slideshow card */
    .nemt-tab-panel[data-tab-panel="problem"] .background-content-layout {
      grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) !important;
      gap: 30px !important;
      align-items: stretch !important;
    }

    .nemt-tab-panel[data-tab-panel="problem"] .background-text-content {
      padding: 4px 0 !important;
    }

    .nemt-tab-panel[data-tab-panel="problem"] .background-text-content p {
      font-size: 14.5px !important;
      line-height: 1.82 !important;
      color: var(--muted) !important;
      margin: 0 0 14px 0 !important;
    }

    .problem-slideshow-card {
      padding: 12px !important;
      border-radius: 24px !important;
      background: linear-gradient(180deg, #fcfdff 0%, #f6f9fc 100%) !important;
      border: 1px solid rgba(148, 163, 184, 0.18) !important;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08) !important;
      display: flex;
      align-items: stretch;
      justify-content: stretch;
      min-width: 0;
    }

    .problem-photo-frame {
      width: 100%;
      height: 100%;
      min-height: 420px;
      aspect-ratio: auto;
      border-radius: 18px;
      border: 1px solid rgba(13,22,40,0.08);
      background: linear-gradient(180deg, #f8fbff 0%, #edf4fc 100%);
    }

    .problem-slideshow-card .hero-slideshow {
      width: 100%;
      height: 100%;
      min-height: 420px;
    }

    .problem-slideshow-card .hero-slide {
      padding: 12px;
    }

    .problem-slideshow-card .hero-slide img {
      width: 100% !important;
      height: 100% !important;
      min-height: 0 !important;
      max-height: none !important;
      object-fit: contain !important;
      object-position: center center !important;
      border-radius: 16px !important;
      background: #ffffff;
    }

    .problem-slideshow-card .hero-slide-indicators {
      bottom: 12px;
    }

    @media (max-width: 1100px) {
      .nemt-tab-panel[data-tab-panel="problem"] .background-content-layout {
        grid-template-columns: 1fr !important;
      }
      .problem-photo-frame,
      .problem-slideshow-card .hero-slideshow {
        min-height: 360px;
      }
    }


/* Background tab slideshow card */
.nemt-tab-panel[data-tab-panel="background"] .background-content-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) !important;
  gap: 30px !important;
  align-items: stretch !important;
}

.background-slideshow-card {
  padding: 12px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, #fcfdff 0%, #f6f9fc 100%) !important;
  border: 1px solid rgba(148, 163, 184, 0.18) !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08) !important;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-width: 0;
}

.background-photo-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  aspect-ratio: auto;
  border-radius: 18px;
  border: 1px solid rgba(13,22,40,0.08);
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fc 100%);
}

.background-slideshow-card .hero-slideshow {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.background-slideshow-card .hero-slide {
  padding: 12px;
}

.background-slideshow-card .hero-slide img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 16px !important;
  background: #ffffff;
}

@media (max-width: 1100px) {
  .nemt-tab-panel[data-tab-panel="background"] .background-content-layout {
    grid-template-columns: 1fr !important;
  }
  .background-photo-frame,
  .background-slideshow-card .hero-slideshow {
    min-height: 360px;
  }
}


/* Reliable Background tab slideshow - CSS-based */
.background-slideshow-card {
  padding: 12px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, #fcfdff 0%, #f6f9fc 100%) !important;
  border: 1px solid rgba(148, 163, 184, 0.18) !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08) !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

.bg-fade-slideshow {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fc 100%);
  border: 1px solid rgba(13, 22, 40, 0.08);
}

.bg-fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  animation-name: bgFadeSlide;
  animation-duration: var(--slide-duration);
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.bg-fade-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(13, 22, 40, 0.08);
}

@keyframes bgFadeSlide {
  0% { opacity: 0; }
  4% { opacity: 1; }
  16% { opacity: 1; }
  20% { opacity: 0; }
  100% { opacity: 0; }
}

.bg-fade-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
}

.bg-fade-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(13, 32, 67, 0.22);
  animation-name: bgFadeDot;
  animation-duration: var(--slide-duration);
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes bgFadeDot {
  0% { background: rgba(13, 32, 67, 0.22); transform: scale(1); }
  4% { background: rgba(0, 98, 156, 0.95); transform: scale(1.14); }
  16% { background: rgba(0, 98, 156, 0.95); transform: scale(1.14); }
  20% { background: rgba(13, 32, 67, 0.22); transform: scale(1); }
  100% { background: rgba(13, 32, 67, 0.22); transform: scale(1); }
}

@media (max-width: 1100px) {
  .bg-fade-slideshow {
    min-height: 360px;
  }
}



/* SOLUTION tab: two smaller stacked slides */
.nemt-tab-panel[data-tab-panel="solution"] .solution-slides-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.nemt-tab-panel[data-tab-panel="solution"] .solution-slide-label {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  padding: 2px 4px 0;
}

.nemt-tab-panel[data-tab-panel="solution"] .solution-slideshow-card {
  padding: 10px !important;
}

.nemt-tab-panel[data-tab-panel="solution"] .solution-slideshow-card .hero-slideshow {
  width: 100%;
  height: 248px;
  min-height: 248px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(13,22,40,0.08);
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fc 100%);
}

.nemt-tab-panel[data-tab-panel="solution"] .solution-slideshow-card .hero-slide {
  padding: 10px;
}

.nemt-tab-panel[data-tab-panel="solution"] .solution-slideshow-card .hero-slide img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 14px !important;
  background: #ffffff;
}

.nemt-tab-panel[data-tab-panel="solution"] .solution-slideshow-card .hero-slide-indicators {
  bottom: 10px;
}

@media (max-width: 1100px) {
  .nemt-tab-panel[data-tab-panel="solution"] .solution-slideshow-card .hero-slideshow {
    height: 280px;
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .nemt-tab-panel[data-tab-panel="solution"] .solution-slideshow-card .hero-slideshow {
    height: 220px;
    min-height: 220px;
  }
}


    /* Remove right-side slide title spacing */
    .nemt-tab-panel[data-tab-panel="solution"] .solution-slides-stack {
      gap: 14px !important;
    }

/* Externalized inline style attributes */
.u-style-001 { --slide-count:6; --slide-duration:30s; }
.u-style-002 { animation-delay:0s; }
.u-style-003 { animation-delay:5s; }
.u-style-004 { animation-delay:10s; }
.u-style-005 { animation-delay:15s; }
.u-style-006 { animation-delay:20s; }
.u-style-007 { animation-delay:25s; }