:root {
        --zj-navy: #102f4f;
        --zj-ink: #17212b;
        --zj-copper: #c9643c;
        --zj-steel: #eef2f5;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        color: var(--zj-ink);
      }

      .zj-hero {
        position: relative;
        overflow: hidden;
        background-image:
          linear-gradient(90deg, rgba(5, 16, 28, .96), rgba(16, 47, 79, .88) 46%, rgba(14, 38, 67, .46)),
          url("../images/hero-cover.png");
        background-position: center;
        background-size: cover;
      }

      .zj-hero::after {
        position: absolute;
        inset: 0;
        content: "";
        pointer-events: none;
        background:
          linear-gradient(120deg, transparent 0 40%, rgba(56, 189, 248, .14) 48%, transparent 58%),
          repeating-linear-gradient(0deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 7px);
        mix-blend-mode: screen;
        opacity: .8;
        animation: zj-scan 7s linear infinite;
      }

      .zj-tech-layers {
        position: absolute;
        inset: 72px 0 0;
        pointer-events: none;
        overflow: hidden;
      }

      .zj-grid-layer {
        position: absolute;
        inset: -30% -10% 0 -10%;
        background-image:
          linear-gradient(rgba(125, 211, 252, .12) 1px, transparent 1px),
          linear-gradient(90deg, rgba(125, 211, 252, .12) 1px, transparent 1px);
        background-size: 56px 56px;
        transform: perspective(900px) rotateX(58deg) translateY(120px);
        transform-origin: center top;
        animation: zj-grid-drift 18s linear infinite;
      }

      .zj-data-rain {
        position: absolute;
        top: 6%;
        right: 2%;
        display: grid;
        gap: 10px;
        width: min(460px, 40vw);
        opacity: .72;
      }

      .zj-data-rain span {
        display: block;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(125, 211, 252, .78), rgba(251, 146, 60, .62), transparent);
        transform-origin: right center;
        animation: zj-data-pulse 2.4s ease-in-out infinite;
      }

      .zj-data-rain span:nth-child(2) {
        width: 72%;
        animation-delay: .25s;
      }

      .zj-data-rain span:nth-child(3) {
        width: 88%;
        animation-delay: .5s;
      }

      .zj-data-rain span:nth-child(4) {
        width: 56%;
        animation-delay: .75s;
      }

      .zj-data-rain span:nth-child(5) {
        width: 78%;
        animation-delay: 1s;
      }

      .zj-hero-inner {
        position: relative;
        z-index: 2;
      }

      .zj-copper {
        color: var(--zj-copper);
      }

      .zj-bg-copper {
        background: var(--zj-copper);
      }

      .zj-border-copper {
        border-color: var(--zj-copper);
      }

      .zj-shell {
        max-width: 1280px;
        margin: 0 auto;
        padding-left: 24px;
        padding-right: 24px;
      }

      .zj-header {
        position: fixed;
        top: 0;
        z-index: 50;
        width: 100%;
        border-bottom: 1px solid #dbe3ea;
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(12px);
      }

      body.admin-bar .zj-header {
        top: 32px;
      }

      .zj-nav-row {
        display: flex;
        min-height: 72px;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
      }

      .zj-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 0 0 auto;
      }

      .zj-logo-mark {
        display: grid;
        width: 40px;
        height: 40px;
        place-items: center;
        border: 1px solid #b9c4ce;
        color: #111827;
        font-weight: 900;
      }

      .zj-logo-image {
        display: block;
        width: clamp(168px, 18vw, 252px);
        height: auto;
        max-height: 68px;
        object-fit: contain;
      }

      .zj-nav {
        display: flex;
        align-items: center;
        gap: 28px;
        color: #334155;
        font-size: 14px;
        font-weight: 800;
      }

      .zj-nav a:hover {
        color: #0f172a;
      }

      .zj-language-switcher {
        position: relative;
        display: inline-flex;
        align-items: center;
        z-index: 80;
      }

      .zj-language-switcher button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        border: 1px solid rgba(148, 163, 184, .55);
        border-radius: 4px;
        background: #fff;
        padding: 7px 12px;
        color: #0f172a;
        font-size: 13px;
        font-weight: 950;
        line-height: 1;
        cursor: default;
      }

      .zj-nav .zj-language-switcher button {
        min-height: 34px;
        border-color: #cbd5e1;
        background: #fff;
        color: #0f172a;
        padding: 8px 12px;
        font-size: 12px;
        text-transform: uppercase;
      }

      .zj-nav .zj-language-switcher button:hover,
      .zj-nav .zj-language-switcher:focus-within button {
        border-color: #c9643c;
        background: #fff7ed;
        color: #9a3412;
      }

      .zj-language-switcher button::after {
        content: "";
        width: 0;
        height: 0;
        margin-left: 8px;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid currentColor;
      }

      .zj-language-menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(124px, 1fr));
        gap: 2px;
        min-width: 280px;
        max-height: 360px;
        overflow: auto;
        border: 1px solid #dbe3ea;
        background: #fff;
        padding: 8px;
        box-shadow: 0 20px 48px rgba(15, 23, 42, .18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(6px);
        transition: opacity .16s ease, transform .16s ease;
      }

      .zj-language-switcher:hover .zj-language-menu,
      .zj-language-switcher:focus-within .zj-language-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .zj-language-menu a {
        display: block;
        border-radius: 3px;
        padding: 9px 10px;
        color: #334155;
        font-size: 13px;
        font-weight: 850;
        text-decoration: none;
        white-space: nowrap;
      }

      .zj-language-menu a:hover,
      .zj-language-menu a:focus {
        background: #fff7ed;
        color: #9a3412;
      }

      .zj-button-dark,
      .zj-button-orange,
      .zj-button-outline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 900;
      }

      .zj-button-dark {
        background: #0f172a;
        color: #fff;
      }

      .zj-button-orange {
        background: #c9643c;
        color: #fff;
      }

      .zj-button-outline {
        border: 1px solid rgba(255, 255, 255, .5);
        color: #fff;
      }

      .zj-hero-inner {
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
        gap: 48px;
        padding-top: 96px;
        padding-bottom: 92px;
      }

      .zj-hero h1 {
        max-width: 820px;
        color: #fff;
        font-size: clamp(44px, 5.2vw, 72px);
        line-height: 1.02;
        font-weight: 950;
        letter-spacing: 0;
      }

      .zj-hero-copy {
        max-width: 720px;
        margin-top: 24px;
        color: #e5edf5;
        font-size: 19px;
        line-height: 1.75;
        font-weight: 600;
      }

      .zj-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 32px;
      }

      .zj-stat-card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .96);
        padding: 18px;
        box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
      }

      .zj-stat-card strong {
        display: block;
        color: #0f172a;
        font-size: 28px;
        line-height: 1;
        font-weight: 950;
      }

      .zj-stat-card span {
        display: block;
        margin-top: 8px;
        color: #64748b;
        font-size: 12px;
        font-weight: 800;
      }

      .zj-position-card {
        border-radius: 8px;
        background: rgba(15, 23, 42, .82);
        padding: 26px;
        color: #fff;
      }

      .zj-engineering-panel {
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(125, 211, 252, .28);
        border-radius: 14px;
        background:
          linear-gradient(145deg, rgba(15, 23, 42, .92), rgba(15, 57, 84, .72)),
          rgba(15, 23, 42, .9);
        box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
      }

      .zj-engineering-panel::before {
        position: absolute;
        inset: 0;
        content: "";
        background:
          linear-gradient(90deg, transparent, rgba(125, 211, 252, .18), transparent),
          repeating-linear-gradient(90deg, transparent 0 22px, rgba(255, 255, 255, .04) 22px 23px);
        opacity: .8;
        animation: zj-panel-sweep 5.5s linear infinite;
      }

      .zj-panel-header {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        padding: 18px 20px;
        color: #e2e8f0;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
      }

      .zj-status {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #86efac;
      }

      .zj-status::before {
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #22c55e;
        box-shadow: 0 0 18px #22c55e;
        content: "";
      }

      .zj-profile-stage {
        position: relative;
        z-index: 1;
        display: grid;
        min-height: 270px;
        place-items: center;
        padding: 24px;
      }

      .zj-profile-core {
        position: relative;
        width: min(260px, 68vw);
        aspect-ratio: 1;
        border: 2px solid rgba(226, 232, 240, .82);
        border-radius: 18px;
        transform: rotate(45deg);
        animation: zj-profile-float 5s ease-in-out infinite;
      }

      .zj-profile-core::before,
      .zj-profile-core::after {
        position: absolute;
        inset: 20%;
        border: 2px solid rgba(125, 211, 252, .7);
        border-radius: 12px;
        content: "";
      }

      .zj-profile-core::after {
        inset: 38%;
        border-color: rgba(251, 146, 60, .82);
        box-shadow: 0 0 34px rgba(251, 146, 60, .38);
      }

      .zj-profile-line {
        position: absolute;
        left: 50%;
        top: -18%;
        width: 2px;
        height: 136%;
        background: linear-gradient(180deg, transparent, rgba(125, 211, 252, .9), transparent);
        transform-origin: center;
      }

      .zj-profile-line:nth-child(1) {
        transform: translateX(-50%) rotate(0deg);
      }

      .zj-profile-line:nth-child(2) {
        transform: translateX(-50%) rotate(45deg);
      }

      .zj-profile-line:nth-child(3) {
        transform: translateX(-50%) rotate(90deg);
      }

      .zj-profile-line:nth-child(4) {
        transform: translateX(-50%) rotate(135deg);
      }

      .zj-holo-label {
        position: absolute;
        z-index: 2;
        border: 1px solid rgba(125, 211, 252, .26);
        border-radius: 6px;
        background: rgba(15, 23, 42, .7);
        padding: 8px 10px;
        color: #e0f2fe;
        font-size: 11px;
        font-weight: 900;
      }

      .zj-holo-label.one {
        left: 18px;
        top: 28px;
      }

      .zj-holo-label.two {
        right: 18px;
        bottom: 34px;
      }

      .zj-panel-specs {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1px;
        background: rgba(255, 255, 255, .1);
      }

      .zj-panel-specs div {
        background: rgba(15, 23, 42, .72);
        padding: 16px;
      }

      .zj-panel-specs strong {
        display: block;
        color: #fff;
        font-size: 20px;
        line-height: 1.1;
        font-weight: 950;
      }

      .zj-panel-specs span {
        display: block;
        margin-top: 6px;
        color: #94a3b8;
        font-size: 11px;
        font-weight: 800;
      }

      @keyframes zj-scan {
        from {
          background-position: -60vw 0, 0 0;
        }
        to {
          background-position: 80vw 0, 0 80px;
        }
      }

      @keyframes zj-grid-drift {
        from {
          background-position: 0 0, 0 0;
        }
        to {
          background-position: 0 560px, 560px 0;
        }
      }

      @keyframes zj-data-pulse {
        0%, 100% {
          opacity: .25;
          transform: scaleX(.38);
        }
        45% {
          opacity: 1;
          transform: scaleX(1);
        }
      }

      @keyframes zj-panel-sweep {
        from {
          background-position: -500px 0, 0 0;
        }
        to {
          background-position: 500px 0, 220px 0;
        }
      }

      @keyframes zj-profile-float {
        0%, 100% {
          transform: rotate(45deg) translateY(0);
        }
        50% {
          transform: rotate(45deg) translateY(-10px);
        }
      }

      .zj-section {
        padding-top: 76px;
        padding-bottom: 76px;
      }

      .zj-section-title {
        max-width: 850px;
        color: #0f172a;
        font-size: clamp(32px, 3.8vw, 48px);
        line-height: 1.08;
        font-weight: 950;
        letter-spacing: 0;
      }

      .zj-section-copy {
        margin-top: 16px;
        max-width: 780px;
        color: #5f6b7a;
        font-size: 18px;
        line-height: 1.7;
      }

      .zj-keyword-strip {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding-top: 22px;
        padding-bottom: 22px;
      }

      .zj-keyword-strip a {
        border: 1px solid #dbe3ea;
        border-radius: 999px;
        background: #fff;
        padding: 8px 12px;
        color: #334155;
        font-size: 13px;
        font-weight: 800;
        text-decoration: none;
        transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease;
      }

      .zj-keyword-strip a:hover {
        border-color: #c9643c;
        background: #fff7ed;
        color: #9a3412;
        transform: translateY(-1px);
      }

      .zj-showcase {
        display: grid;
        grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
        gap: 34px;
        align-items: stretch;
        margin-top: 40px;
      }

      .zj-showcase-panel,
      .zj-showcase-media {
        border: 1px solid #dbe3ea;
        border-radius: 10px;
        background: #fff;
      }

      .zj-showcase-panel {
        display: grid;
        gap: 12px;
        padding: 22px;
      }

      .zj-showcase-tab {
        width: 100%;
        border: 1px solid #dbe3ea;
        border-radius: 8px;
        background: #f8fafc;
        padding: 16px;
        text-align: left;
        cursor: pointer;
      }

      .zj-showcase-tab strong {
        display: block;
        color: #0f172a;
        font-size: 17px;
        font-weight: 950;
      }

      .zj-showcase-tab span {
        display: block;
        margin-top: 5px;
        color: #64748b;
        font-size: 13px;
        font-weight: 700;
      }

      .zj-showcase-tab.is-active {
        border-color: #c9643c;
        background: #fff7ed;
      }

      .zj-showcase-media {
        position: relative;
        display: block;
        overflow: hidden;
        min-height: 440px;
        color: inherit;
        text-decoration: none;
      }

      .zj-showcase-media img {
        width: 100%;
        height: 100%;
        min-height: 440px;
        object-fit: cover;
        transform: scale(1.02);
        transition: opacity 280ms ease, transform 1200ms ease;
      }

      .zj-showcase-media:hover img,
      .zj-showcase-media:focus-visible img {
        transform: scale(1.06);
      }

      .zj-showcase-link-cta {
        display: inline-flex;
        margin-top: 16px;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: 999px;
        padding: 8px 12px;
        color: #fff;
        font-size: 12px;
        font-weight: 950;
      }

      .zj-showcase-media.is-switching img {
        opacity: .25;
        transform: scale(1.07);
      }

      .zj-showcase-caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(0deg, rgba(15, 23, 42, .94), rgba(15, 23, 42, .58), transparent);
        padding: 86px 26px 24px;
        color: #fff;
      }

      .zj-showcase-caption h3 {
        font-size: 30px;
        line-height: 1.1;
        font-weight: 950;
      }

      .zj-showcase-caption p {
        margin-top: 12px;
        max-width: 720px;
        color: #dbeafe;
        font-size: 15px;
        line-height: 1.7;
        font-weight: 650;
      }

      .zj-showcase-progress {
        position: absolute;
        left: 26px;
        right: 26px;
        bottom: 18px;
        height: 3px;
        background: rgba(255, 255, 255, .28);
      }

      .zj-showcase-progress span {
        display: block;
        width: 0;
        height: 100%;
        background: #fb923c;
      }

      .zj-showcase-progress.is-running span {
        animation: zj-progress 4.8s linear forwards;
      }

      @keyframes zj-progress {
        from {
          width: 0;
        }
        to {
          width: 100%;
        }
      }

      .zj-product-grid,
      .zj-deposit-grid,
      .zj-workflow-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
        margin-top: 40px;
      }

      .zj-card,
      .zj-product-card,
      .zj-info-card,
      .zj-deposit-card,
      .zj-form {
        border: 1px solid #dbe3ea;
        border-radius: 8px;
        background: #fff;
      }

      .zj-card,
      .zj-product-card {
        display: block;
        padding: 20px;
        box-shadow: 0 8px 30px rgba(15, 23, 42, .05);
      }

      .zj-card-link {
        color: inherit;
        text-decoration: none;
        transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
      }

      .zj-card-link:hover {
        border-color: #c9643c;
        box-shadow: 0 16px 46px rgba(15, 23, 42, .12);
        transform: translateY(-2px);
      }

      .zj-product-card img {
        width: 100%;
        height: 168px;
        border-radius: 6px;
        object-fit: cover;
      }

      .zj-card h3,
      .zj-step h3,
      .zj-product-card h3,
      .zj-info-card h3,
      .zj-work-card h3 {
        margin-top: 18px;
        color: #0f172a;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 950;
      }

      .zj-card p,
      .zj-step p,
      .zj-product-card p,
      .zj-info-card p,
      .zj-work-card p,
      .zj-deposit-card p {
        margin-top: 12px;
        color: #5f6b7a;
        font-size: 14px;
        line-height: 1.7;
      }

      .zj-card-link > span {
        display: inline-flex;
        margin-top: 16px;
        color: #c9643c;
        font-size: 13px;
        font-weight: 950;
      }

      .zj-simple-card ul {
        margin: 14px 0 0;
        padding-left: 18px;
        color: #5f6b7a;
        font-size: 14px;
        line-height: 1.8;
      }

      .zj-step {
        border: 1px solid #dbe3ea;
        border-radius: 8px;
        background: #fff;
        padding: 22px;
        box-shadow: 0 8px 30px rgba(15, 23, 42, .05);
      }

      .zj-step span {
        color: #c9643c;
        font-size: 13px;
        font-weight: 950;
      }

      .zj-capability-grid,
      .zj-work-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
      }

      .zj-info-card {
        padding: 22px;
      }

      .zj-dark {
        background: #0f172a;
        color: #fff;
      }

      .zj-dark .zj-section-title {
        color: #fff;
      }

      .zj-work-card {
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 8px;
        padding: 22px;
      }

      .zj-work-card strong {
        color: #fdba74;
        font-size: 14px;
      }

      .zj-work-card h3 {
        color: #fff;
      }

      .zj-work-card p {
        color: #cbd5e1;
      }

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

      .zj-deposit-card {
        padding: 26px;
        display: flex;
        min-height: 100%;
        flex-direction: column;
      }

      .zj-deposit-card.featured {
        border: 1px solid #dbe3ea;
        box-shadow: none;
      }

      .zj-deposit-card h3 {
        margin-top: 16px;
        color: #0f172a;
        font-size: 40px;
        line-height: 1;
        font-weight: 950;
      }

      .zj-contact-grid {
        display: grid;
        grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
        gap: 52px;
      }

      .zj-form {
        display: grid;
        gap: 16px;
        padding: 26px;
      }

      .zj-contact-cards {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 26px;
      }

      .zj-contact-card {
        display: grid;
        min-width: 0;
        gap: 7px;
        border: 1px solid #dbe3ea;
        border-radius: 8px;
        background: #fff;
        padding: 16px;
        color: inherit;
        text-decoration: none;
        transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
      }

      .zj-contact-card:hover {
        border-color: #c9643c;
        box-shadow: 0 14px 34px rgba(15, 23, 42, .1);
        transform: translateY(-1px);
      }

      .zj-contact-icon {
        display: inline-grid;
        width: 36px;
        height: 36px;
        place-items: center;
        border-radius: 999px;
        background: #f1f5f9;
        color: #0f172a;
      }

      .zj-contact-icon svg,
      .zj-social-links svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .zj-contact-card.is-whatsapp .zj-contact-icon {
        background: #dcfce7;
        color: #15803d;
      }

      .zj-contact-card.is-email .zj-contact-icon {
        background: #dbeafe;
        color: #1d4ed8;
      }

      .zj-contact-card span {
        display: block;
        color: #64748b;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
      }

      .zj-contact-card .zj-contact-icon {
        display: inline-grid;
        color: #0f172a;
        text-transform: none;
      }

      .zj-contact-card.is-whatsapp .zj-contact-icon {
        color: #15803d;
      }

      .zj-contact-card.is-email .zj-contact-icon {
        color: #1d4ed8;
      }

      .zj-contact-card strong {
        display: block;
        margin-top: 8px;
        color: #0f172a;
        font-size: 14px;
        line-height: 1.35;
        font-weight: 950;
        overflow-wrap: anywhere;
      }

      .zj-form label {
        display: grid;
        gap: 8px;
        color: #334155;
        font-size: 14px;
        font-weight: 800;
      }

      .zj-form input,
      .zj-form select,
      .zj-form textarea {
        width: 100%;
        border: 1px solid #cbd5e1;
        border-radius: 6px;
        min-height: 46px;
        padding: 10px 12px;
        color: #0f172a;
        font-size: 14px;
      }

      .zj-form textarea {
        min-height: 128px;
      }

      .zj-field-help {
        color: #64748b;
        font-size: 12px;
        line-height: 1.5;
        font-weight: 700;
      }

      .zj-required {
        color: #c2410c;
      }

      .zj-privacy-note,
      .zj-form-status {
        margin: 0;
        color: #64748b;
        font-size: 13px;
        line-height: 1.55;
        font-weight: 700;
      }

      .zj-form-status[data-state="success"] {
        color: #166534;
      }

      .zj-form-status[data-state="error"] {
        color: #b91c1c;
      }

      .zj-form-status[data-state="notice"],
      .zj-form-status[data-state="pending"] {
        color: #92400e;
      }

      .zj-form-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
      }

      .zj-footer {
        background: #0f172a;
        color: #cbd5e1;
      }

      .zj-footer-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 22px;
        align-items: center;
        padding-top: 28px;
        padding-bottom: 28px;
        font-size: 14px;
        font-weight: 700;
      }

      .zj-social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-end;
      }

      .zj-social-links a {
        display: inline-grid;
        width: 44px;
        height: 44px;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 999px;
        color: #e2e8f0;
        transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
      }

      .zj-social-links a:hover {
        border-color: rgba(251, 146, 60, .7);
        background: rgba(251, 146, 60, .12);
        color: #fff;
        transform: translateY(-1px);
      }

      .zj-social-links a span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
      }

      .zj-b2b-header {
        background: #fff;
      }

      .zj-topbar {
        border-bottom: 1px solid #e2e8f0;
        background: #0f172a;
        color: #cbd5e1;
        font-size: 13px;
        font-weight: 800;
      }

      .zj-topbar-inner,
      .zj-topbar-left,
      .zj-topbar-right {
        display: flex;
        align-items: center;
        gap: 18px;
      }

      .zj-topbar-inner {
        min-height: 38px;
        justify-content: space-between;
      }

      .zj-topbar a {
        color: #f8fafc;
        text-decoration: none;
      }

      .zj-topbar a:hover {
        color: #fdba74;
      }

      .zj-b2b-header .zj-nav-row {
        min-height: 78px;
      }

      .zj-b2b-header .zj-nav {
        gap: 24px;
        text-transform: uppercase;
      }

      .zj-b2b-hero {
        min-height: 660px;
        padding-top: 116px;
        background-image:
          linear-gradient(90deg, rgba(3, 12, 26, .92), rgba(15, 47, 79, .78) 48%, rgba(15, 47, 79, .28)),
          url("../images/hero-cover.jpg");
      }

      .zj-b2b-hero::after,
      .zj-b2b-hero .zj-tech-layers {
        display: none;
      }

      .zj-b2b-hero-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 52px;
        align-items: center;
        min-height: 544px;
        padding-top: 40px;
        padding-bottom: 60px;
      }

      .zj-b2b-hero-copy {
        max-width: 760px;
      }

      .zj-b2b-kicker {
        margin-bottom: 16px;
        color: #fdba74;
        font-size: 13px;
        font-weight: 950;
        letter-spacing: .12em;
        text-transform: uppercase;
      }

      .zj-b2b-hero-copy h1 {
        color: #fff;
        font-size: clamp(42px, 5.5vw, 76px);
        line-height: 1;
        font-weight: 950;
      }

      .zj-b2b-hero-copy > p:not(.zj-b2b-kicker) {
        margin-top: 24px;
        color: #e2e8f0;
        font-size: 19px;
        line-height: 1.72;
        font-weight: 650;
      }

      .zj-category-menu {
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
      }

      .zj-category-menu h2 {
        background: #c9643c;
        padding: 18px 22px;
        color: #fff;
        font-size: 18px;
        font-weight: 950;
        letter-spacing: .04em;
      }

      .zj-category-menu a {
        display: block;
        border-bottom: 1px solid #e2e8f0;
        padding: 18px 22px;
        color: inherit;
        text-decoration: none;
      }

      .zj-category-menu a:hover {
        background: #fff7ed;
      }

      .zj-category-menu strong {
        display: block;
        color: #0f172a;
        font-size: 16px;
        font-weight: 950;
      }

      .zj-category-menu span {
        display: block;
        margin-top: 6px;
        color: #64748b;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.5;
      }

      .zj-hero-cards-band {
        margin-top: -64px;
        position: relative;
        z-index: 4;
        padding-bottom: 26px;
      }

      .zj-hero-card-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
      }

      .zj-hero-card {
        position: relative;
        display: block;
        min-height: 230px;
        overflow: hidden;
        color: #fff;
        text-decoration: none;
        box-shadow: 0 18px 48px rgba(15, 23, 42, .18);
      }

      .zj-hero-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
      }

      .zj-hero-card:hover img {
        transform: scale(1.06);
      }

      .zj-hero-card::after {
        position: absolute;
        inset: 0;
        content: "";
        background: linear-gradient(0deg, rgba(15, 23, 42, .88), rgba(15, 23, 42, .28));
      }

      .zj-hero-card span {
        position: absolute;
        left: 22px;
        right: 22px;
        bottom: 22px;
        z-index: 2;
      }

      .zj-hero-card strong,
      .zj-hero-card em,
      .zj-hero-card b {
        display: block;
      }

      .zj-hero-card strong {
        font-size: 24px;
        line-height: 1.1;
        font-weight: 950;
      }

      .zj-hero-card em {
        margin-top: 8px;
        color: #e2e8f0;
        font-size: 13px;
        font-style: normal;
        font-weight: 700;
        line-height: 1.55;
      }

      .zj-hero-card b {
        margin-top: 12px;
        color: #fdba74;
        font-size: 13px;
        font-weight: 950;
      }

      .zj-section-head-row {
        display: grid;
        grid-template-columns: minmax(0, .95fr) minmax(340px, .65fr);
        gap: 36px;
        align-items: end;
        margin-bottom: 38px;
      }

      .zj-section-head-row > p {
        color: #64748b;
        font-size: 16px;
        font-weight: 650;
        line-height: 1.75;
      }

      .zj-product-center-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px;
      }

      .zj-product-center-card {
        display: flex;
        min-height: 100%;
        flex-direction: column;
        border: 1px solid #dbe3ea;
        background: #fff;
        color: inherit;
        text-decoration: none;
        transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
      }

      .zj-product-center-card:hover {
        border-color: #c9643c;
        box-shadow: 0 18px 46px rgba(15, 23, 42, .12);
        transform: translateY(-2px);
      }

      .zj-product-center-card img {
        width: 100%;
        height: 186px;
        object-fit: cover;
      }

      .zj-product-center-card span {
        display: flex;
        flex: 1;
        flex-direction: column;
        padding: 18px;
      }

      .zj-product-center-card h3 {
        color: #0f172a;
        font-size: 18px;
        line-height: 1.25;
        font-weight: 950;
      }

      .zj-product-center-card p {
        margin-top: 10px;
        color: #5f6b7a;
        font-size: 13px;
        line-height: 1.65;
      }

      .zj-product-center-card b {
        margin-top: auto;
        padding-top: 14px;
        color: #c9643c;
        font-size: 13px;
        font-weight: 950;
      }

      .zj-about-section {
        background: #f8fafc;
        padding: 76px 0;
      }

      .zj-about-grid {
        display: grid;
        grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
        gap: 48px;
        align-items: center;
      }

      .zj-about-grid > img {
        width: 100%;
        min-height: 420px;
        object-fit: cover;
        box-shadow: 0 18px 54px rgba(15, 23, 42, .14);
      }

      .zj-stat-line {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 32px;
      }

      .zj-stat-line div {
        border-left: 3px solid #c9643c;
        background: #fff;
        padding: 18px;
      }

      .zj-stat-line strong {
        display: block;
        color: #0f172a;
        font-size: 25px;
        line-height: 1;
        font-weight: 950;
      }

      .zj-stat-line span {
        display: block;
        margin-top: 8px;
        color: #64748b;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
      }

      .zj-advantage-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
        margin-top: 44px;
      }

      .zj-advantage-grid div {
        border: 1px solid #dbe3ea;
        background: #fff;
        padding: 22px;
      }

      .zj-advantage-grid h3 {
        color: #0f172a;
        font-size: 18px;
        font-weight: 950;
      }

      .zj-advantage-grid p {
        margin-top: 9px;
        color: #64748b;
        font-size: 13px;
        line-height: 1.7;
        font-weight: 650;
      }

      .zj-application-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px;
      }

      .zj-application-grid article {
        background: #fff;
      }

      .zj-application-grid img {
        width: 100%;
        height: 230px;
        object-fit: cover;
      }

      .zj-application-grid h3 {
        margin-top: 16px;
        color: #0f172a;
        font-size: 20px;
        font-weight: 950;
      }

      .zj-application-grid p {
        margin-top: 8px;
        color: #64748b;
        font-size: 14px;
        line-height: 1.7;
      }

      .zj-service-band {
        background:
          linear-gradient(90deg, rgba(15, 23, 42, .95), rgba(15, 47, 79, .9)),
          url("../images/industrial-profiles.jpg") center / cover;
        color: #fff;
        padding: 82px 0;
      }

      .zj-service-title {
        max-width: 800px;
      }

      .zj-service-title p {
        color: #fdba74;
        font-size: 13px;
        font-weight: 950;
        letter-spacing: .14em;
      }

      .zj-service-title h2 {
        margin-top: 10px;
        font-size: clamp(34px, 4.5vw, 56px);
        line-height: 1.05;
        font-weight: 950;
      }

      .zj-service-title span {
        display: block;
        margin-top: 16px;
        color: #cbd5e1;
        font-size: 17px;
        line-height: 1.65;
        font-weight: 700;
      }

      .zj-service-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
        margin-top: 42px;
      }

      .zj-service-grid div {
        border: 1px solid rgba(255, 255, 255, .18);
        background: rgba(255, 255, 255, .08);
        padding: 24px;
      }

      .zj-service-grid strong {
        color: #fdba74;
        font-size: 14px;
        font-weight: 950;
      }

      .zj-service-grid h3 {
        margin-top: 14px;
        font-size: 20px;
        font-weight: 950;
      }

      .zj-service-grid p {
        margin-top: 9px;
        color: #dbeafe;
        font-size: 13px;
        line-height: 1.7;
        font-weight: 650;
      }

      .zj-news-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
      }

      .zj-news-grid article {
        border-top: 3px solid #c9643c;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(15, 23, 42, .05);
      }

      .zj-news-thumb,
      .zj-archive-thumb {
        display: block;
        width: 100%;
        overflow: hidden;
        background: #e2e8f0;
        text-decoration: none;
      }

      .zj-news-thumb {
        aspect-ratio: 16 / 10;
      }

      .zj-news-thumb img,
      .zj-archive-thumb img,
      .zj-article-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .zj-news-grid h3 {
        padding: 20px 20px 0;
        color: #0f172a;
        font-size: 18px;
        line-height: 1.3;
        font-weight: 950;
      }

      .zj-news-grid article h3 a {
        display: inline;
        margin-top: 0;
        color: inherit;
        font-size: inherit;
        font-weight: inherit;
      }

      .zj-news-grid p {
        padding: 0 20px;
        margin-top: 10px;
        color: #64748b;
        font-size: 13px;
        line-height: 1.7;
      }

      .zj-news-grid > article > a:not(.zj-news-thumb) {
        display: inline-flex;
        margin: 14px 20px 22px;
        color: #c9643c;
        font-size: 13px;
        font-weight: 950;
        text-decoration: none;
      }

      .zj-page-hero {
        background: linear-gradient(135deg, #0f172a 0%, #173456 100%);
        color: #fff;
        padding: 96px 0 72px;
      }

      .zj-page-hero p {
        max-width: 720px;
        margin-top: 16px;
        color: #cbd5e1;
        font-size: 17px;
        line-height: 1.8;
        font-weight: 700;
      }

      .zj-page-hero h1 {
        max-width: 980px;
        font-size: 56px;
        line-height: 1.04;
        font-weight: 950;
      }

      .zj-archive-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
      }

      .zj-archive-card {
        border-top: 3px solid #c9643c;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 10px 32px rgba(15, 23, 42, .06);
      }

      .zj-archive-thumb {
        aspect-ratio: 16 / 9;
      }

      .zj-archive-card time,
      .zj-article-meta {
        display: block;
        padding: 22px 24px 0;
        color: #64748b;
        font-size: 13px;
        font-weight: 850;
      }

      .zj-archive-card h2 {
        padding: 0 24px;
        margin-top: 12px;
        color: #0f172a;
        font-size: 22px;
        line-height: 1.25;
        font-weight: 950;
      }

      .zj-archive-card h2 a {
        color: inherit;
        text-decoration: none;
      }

      .zj-archive-card p {
        padding: 0 24px;
        margin-top: 12px;
        color: #64748b;
        line-height: 1.75;
        font-weight: 650;
      }

      .zj-archive-card > a:not(.zj-archive-thumb) {
        display: inline-flex;
        margin: 18px 24px 26px;
        color: #c9643c;
        font-weight: 950;
        text-decoration: none;
      }

      .zj-article {
        max-width: 860px;
        margin: 0 auto;
        background: #fff;
      }

      .zj-article-image {
        aspect-ratio: 16 / 8;
        border-radius: 6px;
        box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
      }

      .zj-article-content {
        margin-top: 30px;
        color: #334155;
        font-size: 17px;
        line-height: 1.9;
        font-weight: 600;
      }

      .zj-article-content p + p {
        margin-top: 18px;
      }

      .zj-article-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 34px;
        padding-top: 24px;
        border-top: 1px solid #e2e8f0;
      }

      .zj-article-actions a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        padding: 12px 20px;
        text-decoration: none;
        font-weight: 950;
      }

      .zj-article-actions a:first-child {
        background: #c9643c;
        color: #fff;
      }

      .zj-article-actions a:last-child {
        border: 1px solid #cbd5e1;
        color: #0f172a;
      }

      .zj-news-more {
        margin-top: 28px;
        text-align: center;
      }

      .zj-news-more a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #cbd5e1;
        border-radius: 999px;
        padding: 12px 22px;
        color: #0f172a;
        font-weight: 950;
        text-decoration: none;
      }

      .zj-news-more a:hover {
        border-color: #c9643c;
        color: #c9643c;
      }

      .zj-detail-gallery {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        margin-top: 38px;
      }

      .zj-detail-gallery figure {
        overflow: hidden;
        border: 1px solid #dbe3ea;
        background: #fff;
        box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
      }

      .zj-gallery-zoom {
        display: block;
        width: 100%;
        border: 0;
        background: transparent;
        cursor: zoom-in;
        padding: 0;
      }

      .zj-gallery-zoom img {
        display: block;
        width: 100%;
        height: 360px;
        object-fit: contain;
        background: #f8fafc;
        transition: transform .24s ease;
      }

      .zj-gallery-zoom:hover img,
      .zj-gallery-zoom:focus-visible img {
        transform: scale(1.025);
      }

      .zj-gallery-zoom:focus-visible {
        outline: 3px solid #c9643c;
        outline-offset: -3px;
      }

      .zj-lightbox {
        position: fixed;
        inset: 0;
        z-index: 99999;
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(2, 6, 23, .9);
        padding: 22px;
      }

      .zj-lightbox.is-open {
        display: flex;
      }

      .zj-lightbox img {
        display: block;
        max-width: min(1180px, 94vw);
        max-height: 88vh;
        background: #fff;
        object-fit: contain;
      }

      .zj-lightbox button {
        position: absolute;
        top: 18px;
        right: 18px;
        display: inline-grid;
        width: 44px;
        height: 44px;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, .25);
        background: rgba(15, 23, 42, .72);
        color: #fff;
        cursor: pointer;
        font-size: 26px;
        font-weight: 800;
        line-height: 1;
      }

      .zj-certificate-strip {
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
        background: #fff;
        padding: 34px 0;
      }

      .zj-payment-links {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
        margin-top: 34px;
      }

      .zj-payment-link-card {
        min-height: 250px;
      }

      .zj-payment-link-card span {
        display: inline-flex;
        color: #c9643c;
        font-size: 12px;
        font-weight: 950;
        letter-spacing: .08em;
        text-transform: uppercase;
      }

      .zj-payment-link-card h3 {
        margin-top: 12px;
        color: #0f172a;
        font-size: 30px;
        font-weight: 950;
      }

      .zj-payment-link-card p {
        min-height: 78px;
      }

      .zj-payment-link-card a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 18px;
        background: #0f172a;
        color: #fff;
        padding: 13px 16px;
        font-size: 13px;
        font-weight: 950;
        text-decoration: none;
      }

      .zj-payment-link-card a:hover {
        background: #c9643c;
      }

      .zj-certificate-strip .zj-shell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
      }

      .zj-certificate-strip h2 {
        color: #0f172a;
        font-size: 20px;
        font-weight: 950;
      }

      .zj-certificate-strip div div {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .zj-certificate-strip span {
        display: inline-flex;
        border: 1px solid #dbe3ea;
        background: #f8fafc;
        padding: 10px 14px;
        color: #334155;
        font-size: 13px;
        font-weight: 950;
      }

      .zj-b2b-footer {
        padding-top: 48px;
      }

      .zj-footer-columns {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1.25fr .8fr;
        gap: 34px;
        padding-bottom: 34px;
      }

      .zj-footer-columns h2,
      .zj-footer-columns h3 {
        color: #fff;
        font-weight: 950;
      }

      .zj-footer-columns h2 {
        font-size: 24px;
        line-height: 1.25;
      }

      .zj-footer-columns h3 {
        margin-bottom: 12px;
        font-size: 15px;
        letter-spacing: .08em;
      }

      .zj-footer-columns p,
      .zj-footer-columns a {
        display: block;
        margin-top: 9px;
        color: #cbd5e1;
        font-size: 13px;
        line-height: 1.65;
        font-weight: 700;
        text-decoration: none;
      }

      .zj-footer-columns a:hover {
        color: #fdba74;
      }

      .zj-footer-columns .zj-social-links {
        justify-content: flex-start;
      }

      .zj-footer-columns .zj-social-links a {
        display: inline-grid;
        margin-top: 0;
      }

      .zj-footer-qr-grid {
        display: grid;
        grid-template-columns: repeat(2, 136px);
        gap: 20px;
        margin-top: 18px;
      }

      .zj-qr-card {
        display: grid;
        gap: 8px;
        justify-items: start;
      }

      .zj-qr-card img {
        display: block;
        width: 136px;
        height: auto;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, .16);
        background: #fff;
        opacity: 1 !important;
        filter: none !important;
        mix-blend-mode: normal !important;
        image-rendering: auto;
        isolation: isolate;
        object-fit: contain;
      }

      .zj-qr-card span {
        color: #cbd5e1;
        font-size: 12px;
        font-weight: 950;
        letter-spacing: .04em;
        text-transform: uppercase;
      }

      .zj-static-footer-grid {
        grid-template-columns: minmax(0, 1fr) auto;
      }

      .zj-footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .12);
        padding-top: 18px;
        padding-bottom: 22px;
        color: #94a3b8;
        font-size: 13px;
        font-weight: 700;
      }

      @media (max-width: 980px) {
        .zj-topbar {
          display: none;
        }

        .zj-logo-image {
          width: 176px;
          max-height: 54px;
        }

        .zj-nav {
          display: none;
        }

        .zj-nav.is-open {
          position: absolute;
          top: 72px;
          left: 0;
          right: 0;
          display: grid;
          gap: 14px;
          border-bottom: 1px solid #dbe3ea;
          background: #fff;
          padding: 20px 24px;
        }

        .zj-nav.is-open .zj-language-switcher {
          justify-content: flex-start;
        }

        .zj-nav.is-open .zj-language-menu {
          left: 0;
          right: auto;
        }

        .zj-hero-inner,
        .zj-b2b-hero-inner,
        .zj-showcase,
        .zj-footer-grid,
        .zj-contact-grid,
        .zj-section-head-row,
        .zj-about-grid {
          grid-template-columns: 1fr;
        }

        .zj-data-rain {
          width: 72vw;
          opacity: .38;
        }

        .zj-product-grid,
        .zj-workflow-grid,
        .zj-capability-grid,
        .zj-work-grid,
        .zj-product-center-grid,
        .zj-advantage-grid,
        .zj-application-grid,
        .zj-service-grid,
        .zj-news-grid,
        .zj-detail-gallery,
        .zj-payment-links,
        .zj-footer-columns {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .zj-b2b-hero {
          padding-top: 72px;
        }

        .zj-hero-card-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 640px) {
        .zj-shell {
          padding-left: 18px;
          padding-right: 18px;
        }

        .zj-logo-image {
          width: 148px;
          max-height: 48px;
        }

        .zj-language-menu {
          grid-template-columns: 1fr;
          min-width: 220px;
        }

        .zj-hero-inner {
          padding-top: 62px;
          padding-bottom: 58px;
        }

        .zj-stat-card,
        .zj-stat-line,
        .zj-panel-specs,
        .zj-contact-cards,
        .zj-product-grid,
        .zj-workflow-grid,
        .zj-showcase,
        .zj-capability-grid,
        .zj-work-grid,
        .zj-deposit-grid,
        .zj-form-row,
        .zj-product-center-grid,
        .zj-advantage-grid,
        .zj-application-grid,
        .zj-service-grid,
        .zj-news-grid,
        .zj-detail-gallery,
        .zj-payment-links,
        .zj-footer-columns {
          grid-template-columns: 1fr;
        }

        .zj-payment-link-card {
          min-height: auto;
        }

        .zj-payment-link-card p {
          min-height: 0;
        }

        .zj-detail-gallery img {
          height: 280px;
        }

        .zj-footer-qr-grid {
          grid-template-columns: repeat(2, 126px);
          gap: 14px;
        }

        .zj-qr-card img {
          width: 126px;
          height: auto;
        }

        .zj-b2b-hero-inner {
          gap: 28px;
          min-height: auto;
          padding-bottom: 42px;
        }

        .zj-category-menu {
          order: 2;
        }

        .zj-hero-cards-band {
          margin-top: 0;
          padding-top: 18px;
        }

        .zj-section-head-row {
          gap: 18px;
        }

        .zj-certificate-strip .zj-shell {
          align-items: flex-start;
          flex-direction: column;
        }

        .zj-profile-stage {
          min-height: 240px;
        }

        .zj-social-links {
          justify-content: flex-start;
        }

        .zj-contact-card strong {
          overflow-wrap: break-word;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .zj-hero::after,
        .zj-grid-layer,
        .zj-data-rain span,
        .zj-engineering-panel::before,
        .zj-profile-core {
          animation: none;
        }
      }
