/* Premium presentation layer.
   Loaded after style.css so visual upgrades stay isolated and easy to revise. */

:root {
    --premium-teal: #159a9c;
    --premium-gold: #e0a51b;
    --premium-violet: #7257bf;
    --premium-rose: #c7473f;
    --premium-green: #0f8f6f;
}

.header-inner {
    display: grid;
    grid-template-columns: minmax(110px, 1fr) auto minmax(220px, 1fr);
    gap: 28px;
    align-items: center;
}

.brand {
    min-width: 0;
    justify-self: start;
}

.site-nav {
    margin-left: 0;
    justify-self: center;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    min-width: 128px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--steel);
    font: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.nav-dropdown-toggle span {
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
    color: var(--brand);
    border-color: var(--brand);
}

.nav-dropdown-menu {
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    min-width: 270px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(11, 79, 122, 0.12);
    border-radius: 12px 4px 12px 4px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 48px rgba(16, 24, 40, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-nav .nav-dropdown-menu a {
    min-width: 0;
    display: block;
    padding: 11px 12px;
    border: 0;
    border-radius: 8px 3px 8px 3px;
    color: var(--ink);
    font-size: 0.9rem;
    text-align: left;
}

.site-nav .nav-dropdown-menu a::after {
    display: none;
}

.site-nav .nav-dropdown-menu a:hover {
    background: #eef6fb;
    color: var(--brand);
}

@media (max-width: 980px) {
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 14px 16px;
        border-bottom: 1px solid var(--line);
        text-align: left;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        display: none;
        padding: 8px 12px 12px;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown.open .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: grid;
    }

    .site-nav .nav-dropdown-menu a {
        padding: 10px 12px;
        background: #f8fafc;
    }
}

.header-actions {
    justify-self: end;
    display: grid;
    gap: 5px;
    justify-items: end;
}

.header-email {
    color: #667085;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
}

.header-email:hover {
    color: var(--brand);
}

.language-switcher {
    background: rgba(255, 255, 255, 0.8);
}

html.is-language-restore body {
    opacity: 0;
}

html.is-language-restore,
html.is-language-restore * {
    scroll-behavior: auto !important;
}

html.is-language-restored body {
    animation: languageRestoreSettle 0.12s ease-out both;
}

@keyframes languageRestoreSettle {
    from { opacity: 0.995; }
    to { opacity: 1; }
}

/* Home value flow replaces generic metric counters */
.value-flow {
    position: relative;
    z-index: 2;
    margin-top: -76px;
    padding-bottom: 16px;
}

.value-flow-panel {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    padding: 12px;
    border: 1px solid rgba(11, 79, 122, 0.14);
    border-radius: 26px 6px 26px 6px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 26px 64px rgba(16, 24, 40, 0.16);
    backdrop-filter: blur(16px);
}

.value-flow-panel::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    top: 50%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--premium-teal), var(--premium-gold), var(--accent));
    opacity: 0.18;
}

.value-flow-step {
    --flow-color: var(--brand);
    position: relative;
    z-index: 1;
    min-height: 180px;
    display: grid;
    gap: 8px;
    align-content: start;
    padding: 24px;
    border-right: 1px solid rgba(11, 79, 122, 0.1);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(248, 252, 255, 0.72)),
        radial-gradient(circle at 90% 12%, rgba(11, 79, 122, 0.08), transparent 28%);
}

.value-flow-step:last-child {
    border-right: 0;
}

.value-flow-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--flow-color);
    color: #fff;
    box-shadow: 0 16px 28px rgba(16, 24, 40, 0.16);
}

.value-flow-step > span {
    position: absolute;
    right: 20px;
    top: 20px;
    color: rgba(11, 79, 122, 0.16);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.value-flow-step h2 {
    margin: 6px 0 0;
    font-size: 1.08rem;
    line-height: 1.24;
}

.value-flow-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.value-flow-step-1 { --flow-color: var(--brand); }
.value-flow-step-2 { --flow-color: var(--premium-teal); }
.value-flow-step-3 { --flow-color: var(--premium-gold); }
.value-flow-step-4 { --flow-color: var(--accent); }

.home-news-strip {
    position: relative;
    z-index: 3;
    padding: 34px 0 38px;
    border-bottom: 1px solid rgba(11, 79, 122, 0.09);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 253, 0.98)),
        radial-gradient(circle at 9% 20%, rgba(180, 35, 24, 0.08), transparent 18%);
}

.home-news-strip + .value-flow {
    margin-top: 0;
    padding: 40px 0 22px;
    background:
        linear-gradient(180deg, #f8fbfd, rgba(255, 255, 255, 0));
}

.home-quality-cert {
    overflow: hidden;
    padding: 42px 0;
    background:
        linear-gradient(180deg, #f7fafc, #eef5f8),
        radial-gradient(circle at 50% 0, rgba(11, 79, 122, 0.08), transparent 34%);
}

.home-iso-cert {
    display: flex;
    justify-content: center;
}

.home-iso-cert a {
    width: min(100%, 760px);
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 26px 32px;
    border: 1px solid rgba(11, 79, 122, 0.13);
    border-radius: 18px 4px 18px 4px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 252, 0.96)),
        #fff;
    box-shadow: 0 24px 58px rgba(16, 24, 40, 0.08);
    color: inherit;
}

.home-iso-cert a:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 79, 122, 0.26);
    box-shadow: 0 30px 72px rgba(16, 24, 40, 0.13);
}

.home-iso-mark {
    display: grid;
    place-items: center;
}

.home-iso-mark img {
    max-width: 180px;
    max-height: 116px;
    object-fit: contain;
}

.iso-seal {
    width: 180px;
    min-height: 118px;
    display: grid;
    place-items: center;
    padding: 16px;
    border: 3px solid var(--brand);
    border-radius: 16px 4px 16px 4px;
    background: #fff;
    color: var(--brand);
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(11, 79, 122, 0.12);
}

.iso-seal b {
    font-size: 2.55rem;
    line-height: 0.9;
    font-weight: 900;
}

.iso-seal strong {
    color: var(--ink);
    font-size: 1.15rem;
    line-height: 1;
}

.iso-seal small {
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-iso-copy {
    display: grid;
    gap: 8px;
}

.home-iso-copy small {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-iso-copy strong {
    color: var(--ink);
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1;
}

.home-iso-copy span {
    color: var(--muted);
    line-height: 1.65;
}

.home-project-cta {
    position: relative;
    overflow: hidden;
    padding: 84px 0;
    background:
        linear-gradient(135deg, rgba(4, 25, 43, 0.98), rgba(11, 79, 122, 0.94) 50%, rgba(21, 154, 156, 0.88)),
        radial-gradient(circle at 86% 20%, rgba(224, 165, 27, 0.28), transparent 30%);
}

.home-project-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.08));
    pointer-events: none;
}

.home-project-cta::after {
    content: "";
    position: absolute;
    right: 8%;
    top: 50%;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 62%);
    translate: 0 -50%;
    pointer-events: none;
}

.home-project-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
    gap: 48px;
    align-items: center;
}

.home-project-cta-copy {
    display: grid;
    gap: 16px;
}

.home-project-cta .eyebrow {
    color: rgba(255, 255, 255, 0.8) !important;
}

.home-project-cta h2 {
    max-width: 780px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    line-height: 1.04;
}

.home-project-cta p:not(.eyebrow) {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.72;
}

.home-project-cta .btn {
    margin-top: 10px;
}

.home-project-cta-visual {
    position: relative;
    min-height: 300px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.home-project-cta-visual::before {
    content: "";
    position: absolute;
    left: 52px;
    top: 34px;
    bottom: 34px;
    width: 2px;
    background: linear-gradient(180deg, var(--premium-gold), rgba(255, 255, 255, 0.24), var(--premium-teal));
}

.home-project-cta-visual span {
    position: relative;
    min-height: 84px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px 5px 18px 5px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.home-project-cta-visual span:nth-child(2) {
    margin-left: 36px;
}

.home-project-cta-icon {
    width: 64px;
    height: 64px;
    display: block;
    border-radius: 14px 4px 14px 4px;
    background: #fff;
    background-image: url("../images/icon.png");
    background-repeat: no-repeat;
    background-size: 539px 404px;
    box-shadow:
        0 14px 26px rgba(0, 0, 0, 0.18),
        inset 0 0 0 1px rgba(11, 79, 122, 0.08);
}

.home-project-cta-icon-1 { background-position: -16px -74px; }
.home-project-cta-icon-2 { background-position: -22px -168px; }
.home-project-cta-icon-3 { background-position: -22px -263px; }

.home-project-cta-visual span::after {
    content: "";
    position: absolute;
    left: 48px;
    top: 50%;
    width: 10px;
    height: 10px;
    border: 2px solid rgba(224, 165, 27, 0.9);
    border-radius: 50%;
    background: #fff;
    translate: -50% -50%;
}

.home-project-cta-visual b {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 900;
}

.home-gateways {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 520px;
    background: #0d1828;
}

.home-gateway-card {
    --gateway-bg: linear-gradient(135deg, #0b4f7a, #159a9c);
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background:
        linear-gradient(115deg, rgba(6, 18, 34, 0.84), rgba(6, 18, 34, 0.58)),
        var(--gateway-bg);
    background-size: cover;
    background-position: center;
}

.home-gateway-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.45;
}

.home-gateway-card a {
    position: relative;
    z-index: 1;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px clamp(24px, 7vw, 110px);
    color: #fff;
    text-align: center;
}

.home-gateway-card span {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-gateway-card h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(2.35rem, 5vw, 4.1rem);
    line-height: 1;
    text-transform: uppercase;
}

.home-gateway-card p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.72;
}

.home-gateway-card b {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-gateway-card b::after {
    content: "";
    width: 46px;
    height: 1px;
    background: currentColor;
}

.home-gateway-card:hover {
    filter: saturate(1.04) contrast(1.02);
}

.home-news-inner {
    display: grid;
    grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.home-news-heading {
    padding-left: 22px;
    border-left: 4px solid var(--brand);
}

.home-news-heading h2 {
    margin: 0 0 4px;
    color: var(--brand-strong);
    font-size: 1.55rem;
    font-style: italic;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-news-heading p:not(.eyebrow) {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.93rem;
}

.home-news-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid var(--brand);
    border-radius: 5px;
    color: var(--brand);
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-news-button:hover {
    transform: translateY(-2px);
    background: var(--brand);
    color: #fff;
}

.home-news-list {
    display: grid;
}

.home-news-item {
    border-bottom: 1px solid rgba(11, 79, 122, 0.14);
}

.home-news-item:first-child {
    border-top: 1px solid rgba(11, 79, 122, 0.08);
}

.home-news-item a {
    display: grid;
    grid-template-columns: 104px 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    text-decoration: none;
}

.home-news-item time {
    color: var(--steel);
    font-size: 0.94rem;
    font-weight: 800;
}

.home-news-item span {
    width: fit-content;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(11, 79, 122, 0.08);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 900;
}

.home-news-item h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.home-news-item a:hover h3 {
    color: var(--brand);
}

.home-path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-path-card {
    --path-accent: var(--brand);
    min-height: 100%;
    border: 1px solid rgba(11, 79, 122, 0.12);
    border-radius: 18px 6px 18px 6px;
    background: #fff;
    box-shadow: 0 22px 52px rgba(16, 24, 40, 0.09);
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.home-path-card:hover {
    transform: translateY(-4px);
    border-color: var(--path-accent);
    box-shadow: 0 28px 66px rgba(16, 24, 40, 0.13);
}

.home-path-card a {
    min-height: 100%;
    display: grid;
    color: inherit;
    text-decoration: none;
}

.home-path-card-2 { --path-accent: var(--premium-teal); }
.home-path-card-3 { --path-accent: var(--accent); }

.home-path-media {
    position: relative;
    min-height: 218px;
    display: grid;
    place-items: center;
    padding: 20px;
    background:
        linear-gradient(135deg, rgba(8, 61, 95, 0.08), rgba(21, 154, 156, 0.08)),
        #f6fafc;
}

.home-path-media img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(16, 24, 40, 0.14));
}

.home-path-media span {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    background: rgba(8, 61, 95, 0.92);
    color: #fff;
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-path-body {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 22px;
}

.home-path-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(11, 79, 122, 0.12);
    border-radius: 14px 4px 14px 4px;
    background: rgba(11, 79, 122, 0.07);
    color: var(--path-accent);
}

.home-path-icon .ui-icon {
    width: 25px;
    height: 25px;
}

.home-path-body h3 {
    margin: 0;
    color: var(--brand);
    font-size: 1.22rem;
    line-height: 1.28;
}

.home-path-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.home-path-body b {
    margin-top: 4px;
    color: var(--path-accent);
    font-size: 0.92rem;
}

.process-board {
    --process-gap: 16px;
    position: relative;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--process-gap);
    align-items: stretch;
}

.process-board::before {
    left: 8%;
    right: 8%;
    top: 50%;
    height: 2px;
    background:
        linear-gradient(90deg, rgba(11, 79, 122, 0.12), rgba(21, 154, 156, 0.22), rgba(11, 79, 122, 0.12));
    translate: 0 -50%;
}

.process-node {
    z-index: 1;
    overflow: visible;
    border-color: rgba(11, 79, 122, 0.14);
    border-radius: 14px 5px 14px 5px;
    box-shadow: 0 18px 42px rgba(16, 24, 40, 0.08);
}

.process-node::before,
.process-node::after {
    content: "";
    position: absolute;
    top: 50%;
    pointer-events: none;
}

.process-node::before {
    right: calc(var(--process-gap) * -0.5 - 3px);
    z-index: 3;
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--premium-teal);
    box-shadow: 0 0 0 2px rgba(21, 154, 156, 0.24);
    translate: 0 -50%;
}

.process-node::after {
    left: 100%;
    z-index: 2;
    width: var(--process-gap);
    height: 2px;
    background: linear-gradient(90deg, rgba(11, 79, 122, 0.32), rgba(21, 154, 156, 0.46));
    translate: 0 -50%;
}

.process-node:last-child::before,
.process-node:last-child::after {
    display: none;
}

.process-node-head span {
    box-shadow: 0 0 0 6px rgba(11, 79, 122, 0.08);
}

.process-node-head .ui-icon {
    color: var(--accent);
}

/* Stronger orbit proof */
.why-orbit {
    min-height: 600px;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0 18%, transparent 18.4%),
        radial-gradient(circle at center, transparent 0 30%, rgba(11, 79, 122, 0.1) 30.3% 30.8%, transparent 31.1%),
        radial-gradient(circle at center, transparent 0 42%, rgba(180, 35, 24, 0.12) 42.3% 42.8%, transparent 43.1%),
        linear-gradient(145deg, #fff, #f2f7fa);
    box-shadow: inset 0 0 0 1px rgba(11, 79, 122, 0.08);
}

.why-circuit {
    position: absolute;
    inset: 32px 40px;
    z-index: 0;
    width: calc(100% - 80px);
    height: calc(100% - 64px);
    pointer-events: none;
}

.why-circuit-rings circle {
    fill: none;
    stroke: rgba(11, 79, 122, 0.1);
    stroke-width: 2;
}

.why-circuit-rings circle:nth-child(2) {
    stroke: rgba(180, 35, 24, 0.14);
    stroke-dasharray: 7 7;
}

.why-circuit-rings circle:nth-child(3) {
    stroke: rgba(11, 79, 122, 0.18);
    stroke-width: 5;
}

.why-circuit-lines path {
    fill: none;
    stroke: var(--circuit-color, var(--brand));
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.78;
    filter: drop-shadow(0 8px 12px rgba(16, 24, 40, 0.12));
}

.why-circuit-lines path::selection {
    background: transparent;
}

.why-circuit-nodes circle {
    fill: #fff;
    stroke: var(--circuit-color, var(--brand));
    stroke-width: 5;
}

.why-circuit-nodes .circuit-core {
    fill: rgba(255, 255, 255, 0.5);
    stroke: rgba(11, 79, 122, 0.16);
    stroke-width: 16;
}

.circuit-line-1 { --circuit-color: var(--brand); }
.circuit-line-2 { --circuit-color: var(--premium-teal); }
.circuit-line-3 { --circuit-color: var(--premium-gold); }
.circuit-line-4 { --circuit-color: var(--premium-violet); }
.circuit-line-5 { --circuit-color: var(--premium-rose); }
.circuit-line-6 { --circuit-color: var(--premium-green); }

.why-orbit-center {
    width: 190px;
    height: 190px;
    background:
        radial-gradient(circle at 35% 28%, #fff, #e7f3f8);
    box-shadow:
        0 28px 70px rgba(16, 24, 40, 0.18),
        0 0 0 18px rgba(11, 79, 122, 0.06),
        0 0 0 34px rgba(255, 255, 255, 0.72);
}

.why-orbit-item {
    --orbit-color: var(--brand);
    width: 206px;
    min-height: 132px;
    padding: 16px 18px;
    border: 0;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
        var(--orbit-color);
    box-shadow:
        0 22px 48px rgba(16, 24, 40, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.why-orbit-item::after {
    display: none;
}

.why-orbit-item::before {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: -1;
    border: 1px solid rgba(11, 79, 122, 0.12);
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(11, 79, 122, 0.08), transparent 58%),
        repeating-linear-gradient(90deg, rgba(11, 79, 122, 0.08) 0 10px, transparent 10px 20px);
    opacity: 0.7;
}

.why-orbit-item i {
    width: 52px;
    height: 52px;
    background: var(--orbit-color);
    color: #fff;
    box-shadow: 0 12px 26px rgba(16, 24, 40, 0.18);
}

.why-orbit-item span {
    color: var(--ink);
}

.why-orbit-item-1 { --orbit-color: var(--brand); }
.why-orbit-item-2 { --orbit-color: var(--premium-teal); }
.why-orbit-item-3 { --orbit-color: var(--premium-gold); }
.why-orbit-item-4 { --orbit-color: var(--premium-violet); }
.why-orbit-item-5 { --orbit-color: var(--premium-rose); }
.why-orbit-item-6 { --orbit-color: var(--premium-green); }

/* Service cards: image-led, text kept compact */
.service-panel {
    border-radius: 22px 8px 22px 8px;
}

.service-panel-media img {
    height: 216px;
}

.service-panel-body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.service-panel:hover .service-panel-visual {
    background: var(--service-color, var(--brand));
    color: #fff;
}

/* Quality: replace plain cards with image-backed control gates */
.quality-orbit-board {
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    align-items: stretch;
}

.quality-board-panel {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.quality-board-panel > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.44;
    filter: saturate(1.05) contrast(1.05);
}

.quality-board-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 79, 122, 0.38), rgba(11, 79, 122, 0.94)),
        radial-gradient(circle at 85% 16%, rgba(255, 255, 255, 0.18), transparent 32%);
}

.quality-board-panel .board-label,
.quality-board-panel h3,
.quality-board-panel p:not(.board-label) {
    position: relative;
    z-index: 1;
}

.quality-orbit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.quality-step {
    --quality-color: var(--brand);
    position: relative;
    min-height: 210px;
    overflow: hidden;
    padding: 0;
    display: block;
    border: 0;
    border-radius: 18px 6px 18px 6px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
}

.quality-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 18, 32, 0), rgba(6, 18, 32, 0.42));
    z-index: 1;
}

.quality-step > img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    display: block;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.quality-step-content {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    width: auto;
    height: auto;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 16px 4px 16px 4px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.18);
    backdrop-filter: blur(10px);
}

.quality-step-content div {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--quality-color);
    box-shadow: 0 12px 24px rgba(16, 24, 40, 0.24);
}

.quality-step-content span {
    font-weight: 900;
    line-height: 1.25;
    color: var(--ink);
    overflow-wrap: anywhere;
}

.quality-step p {
    display: none;
}

.quality-step:hover > img {
    transform: scale(1.05);
}

.quality-step-1 { --quality-color: var(--brand); }
.quality-step-2 { --quality-color: var(--premium-teal); }
.quality-step-3 { --quality-color: var(--premium-gold); }
.quality-step-4 { --quality-color: var(--premium-violet); }
.quality-step-5 { --quality-color: var(--premium-rose); }
.quality-step-6 { --quality-color: var(--premium-green); }

/* Hard override for legacy .quality-board-grid article/div rules from style.css */
.quality-orbit-grid .quality-step {
    display: block;
    min-height: 210px;
    padding: 0;
    align-content: initial;
    border: 0;
    border-radius: 18px 6px 18px 6px;
}

.quality-orbit-grid .quality-step .quality-step-content {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-content: center;
    place-items: initial;
    padding: 10px;
    border-radius: 16px 4px 16px 4px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
}

.quality-orbit-grid .quality-step .quality-step-content > div {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--quality-color);
    color: #fff;
}

.quality-orbit-grid .quality-step .quality-step-content > span {
    align-self: center;
    color: var(--ink);
}

/* Assembly examples: visual showcase instead of flat list */
.example-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 22px;
    align-items: stretch;
}

.example-showcase-main,
.example-chip {
    position: relative;
    overflow: hidden;
    border-radius: 22px 6px 22px 6px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, 0.09);
}

.example-showcase-main {
    min-height: 440px;
    background: #dbe9f1;
}

.example-showcase-main img,
.example-chip img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.example-showcase-main::after,
.example-chip::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 18, 32, 0), rgba(6, 18, 32, 0.48));
}

.example-showcase-main > div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 18px 4px 18px 4px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
}

.example-showcase-main span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-weight: 900;
}

.example-showcase-main strong {
    color: var(--ink);
    font-size: 1.45rem;
}

.example-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.example-chip {
    --example-color: var(--brand);
    min-height: 210px;
    background: #fff;
}

.example-chip > div {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 14px 4px 14px 4px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 26px rgba(16, 24, 40, 0.16);
}

.example-chip i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--example-color);
    color: #fff;
}

.example-chip span {
    color: var(--ink);
    font-weight: 900;
    line-height: 1.3;
}

.example-chip:hover img,
.example-showcase-main:hover img {
    transform: scale(1.04);
}

.example-chip-1 { --example-color: var(--brand); }
.example-chip-2 { --example-color: var(--premium-teal); }
.example-chip-3 { --example-color: var(--premium-violet); }
.example-chip-4 { --example-color: var(--premium-green); }

/* Dynamic content pages: cleaner catalog/detail rhythm */
.premium-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.premium-catalog .content-card {
    border: 0;
    border-radius: 18px 6px 18px 6px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(16, 24, 40, 0.09);
}

.premium-catalog .content-card a {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
}

.catalog-image img {
    aspect-ratio: 16 / 10;
}

.catalog-image span,
.equipment-image span {
    top: 14px;
    bottom: auto;
    border-radius: 999px;
}

.premium-catalog .content-card-body h2 {
    margin-bottom: 4px;
    font-size: 1.18rem;
}

.premium-catalog .content-card-body > p:not(.content-meta) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.tag-row span {
    border-radius: 999px;
}

.equipment-card {
    border: 0;
    border-radius: 20px 6px 20px 6px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(16, 24, 40, 0.09);
}

.equipment-card .spec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.equipment-card .spec-list div,
.detail-specs div {
    border-radius: 12px;
    background: #f7fafc;
}

.detail-hero {
    border: 0;
    border-radius: 22px 6px 22px 6px;
    overflow: hidden;
}

.news-detail-section {
    padding-top: 34px;
    background:
        linear-gradient(180deg, #f8fbfd 0, #fff 38%),
        #fff;
}

.news-detail-article {
    max-width: 1120px;
    margin: 0 auto;
}

.news-detail-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 34px;
    padding: 30px;
    border-radius: 24px 8px 24px 8px;
    background:
        linear-gradient(145deg, #fff, #f8fbfd),
        radial-gradient(circle at 8% 12%, rgba(11, 79, 122, 0.08), transparent 28%);
    box-shadow: 0 24px 70px rgba(16, 24, 40, 0.11);
}

.news-detail-hero .content-meta {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 900;
}

.news-detail-category {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(11, 79, 122, 0.08);
    color: var(--brand);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.news-detail-hero h1 {
    margin: 0;
    max-width: 720px;
    color: var(--ink);
    font-size: clamp(2rem, 3.35vw, 3.55rem);
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
}

.news-detail-hero .detail-lead {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--steel);
    font-size: 1.06rem;
    line-height: 1.72;
}

.news-detail-hero .detail-image {
    height: 390px;
    border-radius: 16px 5px 16px 5px;
    box-shadow: 0 24px 58px rgba(16, 24, 40, 0.14);
}

.news-rich-text {
    max-width: 960px;
    margin: 30px auto 0;
    padding: 34px 42px;
    border: 1px solid rgba(11, 79, 122, 0.1);
    border-radius: 18px 6px 18px 6px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(16, 24, 40, 0.08);
    color: var(--steel);
    font-size: 1.03rem;
    font-style: normal;
    line-height: 1.86;
}

.news-rich-text::before {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--premium-teal));
}

.news-rich-text > *:first-child {
    margin-top: 0;
}

.news-rich-text h2,
.news-rich-text h3,
.news-rich-text h4 {
    margin: 1.55em 0 0.65em;
    color: var(--ink);
    line-height: 1.25;
}

.news-rich-text p {
    margin: 0 0 1.15em;
    font-style: normal;
}

.news-rich-text li {
    font-style: normal;
}

.news-rich-text ul,
.news-rich-text ol {
    margin: 0 0 1.2em 1.25em;
    padding: 0;
}

.news-rich-text li {
    margin: 0.35em 0;
}

.news-rich-text blockquote {
    margin: 1.6em 0;
    padding: 18px 22px;
    border-left: 4px solid var(--brand);
    background: #f4f8fb;
    color: var(--ink);
    font-weight: 700;
}

.news-rich-text img {
    height: auto;
    margin: 24px auto;
    border-radius: 14px 5px 14px 5px;
    box-shadow: 0 18px 42px rgba(16, 24, 40, 0.1);
}

.news-rich-text table {
    width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
}

.news-rich-text th,
.news-rich-text td {
    padding: 12px;
    border: 1px solid rgba(11, 79, 122, 0.14);
}

.news-detail-actions {
    max-width: 960px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin: 26px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(11, 79, 122, 0.12);
}

.news-nav-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 10px 4px 10px 4px;
    font-weight: 900;
    text-decoration: none;
}

.news-nav-button.muted {
    background: #f2f4f7;
    color: var(--ink);
}

.news-nav-button.primary {
    background: var(--brand);
    color: #fff;
}

.related-news-section {
    padding-top: 70px;
}

.related-news-title {
    margin: 0 0 30px;
    color: var(--ink);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    line-height: 1.2;
    text-align: center;
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.related-news-card {
    overflow: hidden;
    border-radius: 16px 5px 16px 5px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(16, 24, 40, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(16, 24, 40, 0.14);
}

.related-news-card a {
    display: grid;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
}

.related-news-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    background: var(--bg);
}

.related-news-card div {
    display: grid;
    gap: 8px;
    padding: 20px;
}

.related-news-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.related-news-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.45;
}

.detail-note-grid section {
    border: 0;
    border-radius: 18px 6px 18px 6px;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.07);
}

[data-lightbox-src] {
    cursor: zoom-in;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    place-items: center;
    padding: 28px;
    background: rgba(6, 14, 26, 0.82);
    backdrop-filter: blur(10px);
}

.image-lightbox.open {
    display: grid;
}

.image-lightbox img {
    max-width: min(1120px, 94vw);
    max-height: 86vh;
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.image-lightbox button {
    position: fixed;
    right: 24px;
    top: 22px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
}

body.lightbox-open {
    overflow: hidden;
}

/* Footer upgrade */
.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(21, 154, 156, 0.16), transparent 32%),
        linear-gradient(180deg, #0b1628, #101828);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76), transparent);
}

.footer-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(260px, 1.15fr) minmax(180px, 0.85fr) minmax(270px, 1.05fr) minmax(220px, 0.9fr);
    gap: 38px;
    padding: 58px 0 48px;
}

.footer-about p {
    max-width: 340px;
}

.footer-links ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
}

.footer-links a,
.footer-contact a,
.parent-company-link {
    color: #e6f2f8;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover,
.parent-company-link:hover {
    color: #fff;
}

.parent-company-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-weight: 900;
}

.parent-company-link::after {
    content: "↗";
    font-size: 0.9rem;
}

/* Premium services page */
.service-hero-premium {
    --hero-bg: linear-gradient(135deg, rgba(8, 61, 95, 0.98), rgba(11, 79, 122, 0.92));
    position: relative;
    overflow: hidden;
    padding: 96px 0 78px;
    background:
        linear-gradient(135deg, rgba(4, 25, 43, 0.9), rgba(8, 61, 95, 0.76) 48%, rgba(21, 154, 156, 0.52)),
        var(--hero-bg),
        radial-gradient(circle at 88% 16%, rgba(224, 165, 27, 0.32), transparent 32%);
    background-position: center;
    background-size: cover;
    color: #fff;
}

.service-hero-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08));
}

.image-page-hero {
    --hero-bg: linear-gradient(135deg, rgba(8, 61, 95, 0.98), rgba(11, 79, 122, 0.9));
    position: relative;
    overflow: hidden;
    min-height: 390px;
    display: flex;
    align-items: center;
    padding: 84px 0 76px;
    background:
        linear-gradient(105deg, rgba(4, 25, 43, 0.92), rgba(8, 61, 95, 0.76) 46%, rgba(21, 154, 156, 0.34)),
        var(--hero-bg),
        linear-gradient(135deg, rgba(8, 61, 95, 0.98), rgba(11, 79, 122, 0.9));
    background-position: center;
    background-size: cover;
    color: #fff;
}

.image-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

.image-page-hero::after {
    content: "";
    position: absolute;
    right: -12%;
    bottom: -38%;
    width: 48%;
    height: 86%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 165, 27, 0.16), transparent 62%);
    pointer-events: none;
}

.image-page-hero-inner {
    position: relative;
    z-index: 1;
    min-height: 230px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 178px;
    gap: 44px;
    align-items: center;
}

.image-page-hero-copy {
    max-width: 820px;
}

.image-page-hero h1 {
    max-width: 820px;
    margin: 0 0 16px;
    font-size: clamp(2.25rem, 4.8vw, 4.45rem);
    line-height: 1.04;
}

.image-page-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.72;
}

.image-page-hero-mark {
    width: 178px;
    height: 178px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 28px 8px 28px 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.image-page-hero-mark .ui-icon {
    width: 78px;
    height: 78px;
    color: #fff;
    opacity: 0.92;
}

.contact-info-panel {
    display: grid;
    gap: 16px;
    margin: 18px 0;
}

.contact-details-card,
.contact-map-card {
    border: 1px solid rgba(11, 79, 122, 0.12);
    border-radius: 14px 5px 14px 5px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 252, 0.92)),
        #fff;
    box-shadow: 0 18px 42px rgba(16, 24, 40, 0.08);
}

.contact-details-card {
    display: grid;
    gap: 0;
    overflow: hidden;
}

.contact-info-row {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 17px 18px;
}

.contact-info-row + .contact-info-row {
    border-top: 1px solid rgba(11, 79, 122, 0.08);
}

.contact-info-row > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(11, 79, 122, 0.14);
    border-radius: 16px 5px 16px 5px;
    background: rgba(11, 79, 122, 0.08);
    color: var(--brand);
}

.contact-info-row .ui-icon {
    width: 28px;
    height: 28px;
}

.contact-info-row h2 {
    margin: 0 0 5px;
    color: var(--brand);
    font-size: 1.02rem;
    line-height: 1.25;
}

.contact-info-row p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.contact-info-row a {
    overflow-wrap: anywhere;
}

.contact-map-card {
    overflow: hidden;
}

.contact-map-card iframe {
    width: 100%;
    height: 285px;
    display: block;
    border: 0;
    background: #e8f0f5;
}

.contact-map-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-top: 1px solid rgba(11, 79, 122, 0.1);
}

.contact-map-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.contact-form-mode {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(11, 79, 122, 0.12);
    border-radius: 12px;
    background: rgba(241, 248, 252, 0.86);
}

.contact-form-mode a {
    display: grid;
    gap: 4px;
    min-height: 82px;
    align-content: center;
    padding: 14px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: var(--steel);
    background: rgba(255, 255, 255, 0.56);
}

.contact-form-mode a.active {
    border-color: rgba(11, 79, 122, 0.22);
    background: #fff;
    color: var(--brand);
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
}

.contact-form-mode span {
    font-weight: 900;
}

.contact-form-mode small {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.file-upload-field {
    padding: 16px;
    border: 1px dashed rgba(11, 79, 122, 0.28);
    border-radius: 12px 4px 12px 4px;
    background:
        linear-gradient(145deg, rgba(238, 246, 251, 0.72), rgba(255, 255, 255, 0.96));
}

.file-upload-field > span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.file-upload-field em {
    display: inline-block;
    margin-left: 8px;
    color: var(--premium-rose);
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 900;
}

.file-picker {
    position: relative;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(11, 79, 122, 0.18);
    border-radius: 8px;
    background: #fff;
}

.file-picker input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-picker-button {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-weight: 900;
    line-height: 1;
}

.file-picker-name {
    position: relative;
    z-index: 1;
    min-width: 0;
    color: var(--steel);
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recruit-overview {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.recruit-copy-panel {
    padding: 34px;
    border: 1px solid rgba(11, 79, 122, 0.12);
    border-radius: 14px 4px 14px 4px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 252, 0.92)),
        #fff;
    box-shadow: 0 24px 64px rgba(16, 24, 40, 0.08);
}

.recruit-copy-panel h2 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
}

.recruit-copy-panel p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.recruit-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.recruit-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.recruit-value-card {
    min-height: 260px;
    padding: 24px;
    border: 1px solid rgba(11, 79, 122, 0.12);
    border-radius: 12px 4px 12px 4px;
    background: #fff;
    box-shadow: 0 20px 52px rgba(16, 24, 40, 0.07);
}

.recruit-value-card span,
.recruit-process article span {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
}

.recruit-value-card i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 22px 0 18px;
    border-radius: 18px 5px 18px 5px;
    background: rgba(11, 79, 122, 0.08);
    color: var(--brand);
}

.recruit-value-card .ui-icon {
    width: 30px;
    height: 30px;
}

.recruit-value-card h3,
.recruit-position-card h3,
.recruit-process h3 {
    margin: 0 0 9px;
    color: var(--ink);
}

.recruit-value-card p,
.recruit-position-card p,
.recruit-process p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.recruit-position-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.recruit-position-card {
    display: grid;
    gap: 18px;
    padding: 26px;
    border: 1px solid rgba(11, 79, 122, 0.12);
    border-radius: 14px 4px 14px 4px;
    background: #fff;
    box-shadow: 0 20px 52px rgba(16, 24, 40, 0.07);
}

.recruit-position-card span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(180, 35, 24, 0.08);
    color: var(--premium-rose);
    font-size: 0.78rem;
    font-weight: 900;
}

.recruit-position-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.recruit-position-card li {
    position: relative;
    padding-left: 20px;
    color: var(--steel);
    line-height: 1.5;
}

.recruit-position-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--premium-teal);
}

.recruit-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(11, 79, 122, 0.12);
    border-radius: 16px 4px 16px 4px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 64px rgba(16, 24, 40, 0.08);
}

.recruit-process article {
    position: relative;
    min-height: 220px;
    padding: 28px;
}

.recruit-process article + article {
    border-left: 1px solid rgba(11, 79, 122, 0.1);
}

.recruit-process article::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 52px;
    width: 16px;
    height: 16px;
    border-top: 1px solid rgba(11, 79, 122, 0.22);
    border-right: 1px solid rgba(11, 79, 122, 0.22);
    background: #fff;
    transform: rotate(45deg);
    z-index: 2;
}

.recruit-process article:last-child::after {
    display: none;
}

.recruit-process h3 {
    margin-top: 22px;
}

.recruit-final-cta {
    margin-top: 0;
}

.service-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    gap: 48px;
    align-items: center;
}

.service-hero-copy h1 {
    max-width: 780px;
    margin: 0 0 18px;
    font-size: clamp(2.35rem, 5vw, 4.8rem);
    line-height: 1.02;
}

.service-hero-copy > p:not(.eyebrow) {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
}

.service-hero-flow {
    --orbit-radius: 176px;
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px 8px 30px 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.08);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.service-hero-flow::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 28px 8px 28px 8px;
    background-image:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.14) 1px, transparent 1.5px),
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 28px 28px, 42px 42px, 42px 42px;
    opacity: 0.72;
    pointer-events: none;
}

.service-orbit-lines {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 520px;
    max-width: calc(100% - 48px);
    aspect-ratio: 1;
    translate: -50% -50%;
    overflow: visible;
}

.service-orbit-ring {
    fill: none;
    stroke: rgba(255, 255, 255, 0.28);
    stroke-width: 1.3;
}

.service-orbit-ring-soft {
    stroke: rgba(255, 255, 255, 0.14);
    stroke-dasharray: 5 10;
}

.service-orbit-spoke {
    stroke: rgba(255, 255, 255, 0.25);
    stroke-width: 1.1;
    stroke-linecap: round;
}

.service-orbit-spoke-1 { stroke: rgba(255, 255, 255, 0.34); }
.service-orbit-spoke-2 { stroke: rgba(21, 154, 156, 0.44); }
.service-orbit-spoke-3 { stroke: rgba(224, 165, 27, 0.44); }
.service-orbit-spoke-4 { stroke: rgba(114, 87, 191, 0.42); }
.service-orbit-spoke-5 { stroke: rgba(180, 35, 24, 0.42); }
.service-orbit-spoke-6 { stroke: rgba(15, 143, 111, 0.42); }

.service-flow-core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 178px;
    height: 178px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    padding: 24px;
    translate: -50% -50%;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 50%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 250, 0.94));
    color: var(--brand);
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.24),
        0 0 0 12px rgba(255, 255, 255, 0.06),
        inset 0 0 0 1px rgba(11, 79, 122, 0.08);
    text-align: center;
}

.service-flow-core img {
    width: 76px;
    height: auto;
    margin-bottom: 2px;
}

.service-flow-core span {
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1;
}

.service-flow-core strong {
    color: var(--accent);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-hero-node {
    --node-color: var(--premium-teal);
    position: absolute;
    z-index: 3;
    width: 148px;
    min-height: 120px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 22px 6px 22px 6px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.52);
    text-align: center;
    transform:
        translate(-50%, -50%)
        rotate(var(--node-angle))
        translateY(calc(var(--orbit-radius) * -1))
        rotate(calc(var(--node-angle) * -1));
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-hero-node::before {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;
    border-radius: 26px 8px 26px 8px;
    background: linear-gradient(135deg, var(--node-color), transparent 62%);
    opacity: 0.2;
}

.service-hero-node:hover {
    box-shadow:
        0 26px 58px rgba(0, 0, 0, 0.24),
        inset 0 0 0 1px rgba(255, 255, 255, 0.64);
    border-color: rgba(255, 255, 255, 0.46);
}

.service-hero-node i,
.service-selector-icon,
.standard-process-icon,
.customer-input-icon,
.service-output-icon {
    display: grid;
    place-items: center;
}

.service-hero-node i {
    width: 46px;
    height: 46px;
    border-radius: 16px 4px 16px 4px;
    background: var(--node-color);
    color: #fff;
}

.service-hero-node span {
    font-weight: 900;
}

.service-hero-node-1 { --node-color: var(--brand); --node-angle: 0deg; left: 50%; top: 50%; }
.service-hero-node-2 { --node-color: var(--premium-teal); --node-angle: 60deg; left: 50%; top: 50%; }
.service-hero-node-3 { --node-color: var(--premium-gold); --node-angle: 120deg; left: 50%; top: 50%; }
.service-hero-node-4 { --node-color: var(--premium-violet); --node-angle: 180deg; left: 50%; top: 50%; }
.service-hero-node-5 { --node-color: var(--accent); --node-angle: 240deg; left: 50%; top: 50%; }
.service-hero-node-6 { --node-color: var(--premium-green); --node-angle: 300deg; left: 50%; top: 50%; }

.service-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-selector-card {
    --selector-color: var(--brand);
    min-height: 460px;
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    gap: 22px;
    padding: 28px;
    border: 1px solid rgba(11, 79, 122, 0.14);
    border-top: 4px solid var(--selector-color);
    border-radius: 26px 8px 26px 8px;
    background:
        linear-gradient(145deg, #fff, #f8fbfd),
        radial-gradient(circle at 92% 6%, rgba(21, 154, 156, 0.1), transparent 30%);
    box-shadow: 0 22px 54px rgba(16, 24, 40, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-selector-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 79, 122, 0.28);
    box-shadow: 0 28px 72px rgba(16, 24, 40, 0.16);
}

.service-selector-card-1 { --selector-color: var(--brand); }
.service-selector-card-2 { --selector-color: var(--premium-teal); }
.service-selector-card-3 { --selector-color: var(--premium-gold); }

.service-selector-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px 6px 22px 6px;
    background: var(--selector-color);
    color: #fff;
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.18);
}

.service-selector-kicker {
    margin: 0 0 8px;
    color: var(--selector-color);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.service-selector-card h2 {
    margin: 0 0 12px;
    font-size: 1.45rem;
    line-height: 1.2;
}

.service-selector-card p {
    margin: 0;
    color: var(--muted);
}

.service-selector-meta {
    display: grid;
    gap: 10px;
}

.service-selector-meta span {
    display: block;
    padding: 10px 12px;
    border: 1px solid rgba(11, 79, 122, 0.12);
    border-radius: 12px;
    background: #fff;
    color: var(--steel);
    font-size: 0.9rem;
    font-weight: 800;
}

.service-pathways {
    display: grid;
    gap: 24px;
}

.pathway-panel {
    --pathway-color: var(--brand);
    --pathway-soft: rgba(11, 79, 122, 0.07);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
    gap: 22px;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(11, 79, 122, 0.13);
    border-radius: 24px 8px 24px 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.9)),
        radial-gradient(circle at 92% 12%, var(--pathway-soft), transparent 34%);
    box-shadow: 0 20px 54px rgba(16, 24, 40, 0.1);
}

.pathway-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 79, 122, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 79, 122, 0.035) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.pathway-panel-1 {
    --pathway-color: var(--brand);
    --pathway-soft: rgba(11, 79, 122, 0.1);
}

.pathway-panel-2 {
    --pathway-color: var(--premium-teal);
    --pathway-soft: rgba(21, 154, 156, 0.1);
}

.pathway-panel-3 {
    --pathway-color: var(--premium-gold);
    --pathway-soft: rgba(224, 165, 27, 0.13);
}

.pathway-media,
.pathway-flow {
    position: relative;
    z-index: 1;
}

.pathway-media {
    display: grid;
    grid-template-rows: minmax(180px, auto) auto;
    overflow: hidden;
    border-radius: 20px 6px 20px 6px;
    background:
        linear-gradient(145deg, rgba(8, 61, 95, 0.98), rgba(11, 79, 122, 0.9)),
        var(--pathway-color);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.pathway-image-frame {
    min-height: 210px;
    display: grid;
    place-items: center;
    padding: 18px;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.18), transparent 42%),
        rgba(255, 255, 255, 0.06);
}

.pathway-image {
    width: 100%;
    max-height: 225px;
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.24));
}

.pathway-content {
    display: grid;
    gap: 11px;
    padding: 20px;
}

.pathway-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pathway-meta span,
.pathway-meta b {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.72rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.pathway-meta span {
    font-weight: 900;
}

.pathway-meta b {
    max-width: 58%;
    font-weight: 800;
    text-align: right;
}

.pathway-title,
.pathway-content h3 {
    margin: 0;
    font-size: 1.32rem;
    line-height: 1.16;
}

.pathway-desc,
.pathway-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    line-height: 1.52;
}

.pathway-flow {
    display: grid;
    align-items: center;
    min-width: 0;
}

.pathway-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px 18px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
}

.pathway-step {
    position: relative;
    min-height: 142px;
    display: grid;
    grid-template-rows: 86px minmax(2.45em, auto);
    align-content: center;
    justify-items: center;
    gap: 8px;
    padding: 18px 10px 14px;
    border: 1px solid rgba(11, 79, 122, 0.13);
    border-radius: 16px 5px 16px 5px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.075);
    text-align: center;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.pathway-step::after {
    content: "";
    position: absolute;
    left: calc(100% + 4px);
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid rgba(11, 79, 122, 0.34);
    border-right: 2px solid rgba(11, 79, 122, 0.34);
    rotate: 45deg;
    translate: 0 -50%;
}

.pathway-step:nth-child(4n)::after,
.pathway-step:last-child::after {
    display: none;
}

.pathway-step:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 79, 122, 0.28);
    box-shadow: 0 18px 42px rgba(16, 24, 40, 0.12);
}

.pathway-step-no {
    position: absolute;
    left: 10px;
    top: 10px;
    min-width: 32px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--pathway-color);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 900;
}

.pathway-step-icon {
    width: 86px;
    height: 86px;
    display: block;
    border-radius: 18px 6px 18px 6px;
    background-image: url("../images/icon.png");
    background-repeat: no-repeat;
    background-size: 724px 543px;
    filter: drop-shadow(0 10px 18px rgba(16, 24, 40, 0.1));
}

.pathway-step-icon-1-1 { background-position: -22px -99px; }
.pathway-step-icon-1-2 { background-position: -107px -99px; }
.pathway-step-icon-1-3 { background-position: -193px -99px; }
.pathway-step-icon-1-4 { background-position: -277px -99px; }
.pathway-step-icon-1-5 { background-position: -362px -99px; }
.pathway-step-icon-1-6 { background-position: -446px -99px; }
.pathway-step-icon-1-7 { background-position: -531px -99px; }
.pathway-step-icon-1-8 { background-position: -616px -99px; }

.pathway-step-icon-2-1 { background-position: -30px -226px; }
.pathway-step-icon-2-2 { background-position: -131px -226px; }
.pathway-step-icon-2-3 { background-position: -229px -226px; }
.pathway-step-icon-2-4 { background-position: -328px -226px; }
.pathway-step-icon-2-5 { background-position: -424px -226px; }
.pathway-step-icon-2-6 { background-position: -517px -226px; }
.pathway-step-icon-2-7 { background-position: -612px -226px; }

.pathway-step-icon-3-1 { background-position: -30px -353px; }
.pathway-step-icon-3-2 { background-position: -131px -353px; }
.pathway-step-icon-3-3 { background-position: -229px -353px; }
.pathway-step-icon-3-4 { background-position: -328px -353px; }
.pathway-step-icon-3-5 { background-position: -424px -353px; }
.pathway-step-icon-3-6 { background-position: -517px -353px; }
.pathway-step-icon-3-7 { background-position: -612px -353px; }

.pathway-step-label {
    min-height: 2.6em;
    display: grid;
    place-items: center;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1.25;
}

.standard-service-process {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.standard-service-process article {
    position: relative;
    min-height: 270px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 22px 18px;
    border: 1px solid rgba(11, 79, 122, 0.13);
    border-radius: 22px 6px 22px 6px;
    background:
        linear-gradient(145deg, #fff, #f8fbfd),
        radial-gradient(circle at 88% 8%, rgba(11, 79, 122, 0.06), transparent 34%);
    box-shadow: 0 18px 44px rgba(16, 24, 40, 0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.standard-service-process article:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(16, 24, 40, 0.14);
}

.standard-service-process article > span {
    position: absolute;
    left: 16px;
    top: 14px;
    min-width: 34px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
}

.standard-process-icon,
.customer-input-icon,
.service-output-icon {
    display: block;
    background-image: url("../images/icon.png");
    background-repeat: no-repeat;
    background-size: 724px 543px;
    filter: drop-shadow(0 10px 18px rgba(16, 24, 40, 0.1));
}

.standard-process-icon {
    width: 86px;
    height: 86px;
    margin-top: 20px;
    border-radius: 18px 6px 18px 6px;
}

.standard-process-icon-1 { background-position: -22px -99px; }
.standard-process-icon-2 { background-position: -131px -226px; }
.standard-process-icon-3 { background-position: -229px -226px; }
.standard-process-icon-4 { background-position: -362px -99px; }
.standard-process-icon-5 { background-position: -531px -99px; }
.standard-process-icon-6 { background-position: -616px -99px; }

.customer-input-icon {
    width: 86px;
    height: 86px;
    border-radius: 17px 5px 17px 5px;
}

.customer-input-icon-1 { background-position: -22px -99px; }
.customer-input-icon-2 { background-position: -30px -226px; }
.customer-input-icon-3 { background-position: -30px -353px; }

.standard-service-process h3,
.customer-input-column h3,
.service-output-card h3 {
    margin: 0 0 10px;
    line-height: 1.25;
}

.standard-service-process p,
.service-output-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.customer-input-matrix {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.customer-input-column {
    --matrix-color: var(--brand);
    padding: 24px;
    border: 1px solid rgba(11, 79, 122, 0.13);
    border-radius: 26px 8px 26px 8px;
    background:
        linear-gradient(145deg, #fff, #f8fbfd),
        radial-gradient(circle at 92% 8%, rgba(11, 79, 122, 0.06), transparent 34%);
    box-shadow: 0 18px 44px rgba(16, 24, 40, 0.09);
}

.customer-input-column-1 { --matrix-color: var(--brand); }
.customer-input-column-2 { --matrix-color: var(--premium-teal); }
.customer-input-column-3 { --matrix-color: var(--premium-gold); }

.customer-input-column > div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.customer-input-column h3 {
    margin: 0;
}

.customer-input-column ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.customer-input-column li {
    position: relative;
    padding: 10px 12px 10px 34px;
    border: 1px solid rgba(11, 79, 122, 0.1);
    border-radius: 12px;
    background: #f8fbfd;
    color: var(--steel);
    font-weight: 700;
}

.customer-input-column li::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--matrix-color);
    translate: 0 -50%;
}

.service-output-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-output-card {
    --output-color: var(--brand);
    min-height: 260px;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 22px;
    border: 1px solid rgba(11, 79, 122, 0.13);
    border-left: 5px solid var(--output-color);
    border-radius: 22px 8px 22px 8px;
    background:
        linear-gradient(145deg, #fff, #f8fbfd),
        radial-gradient(circle at 88% 8%, rgba(11, 79, 122, 0.06), transparent 34%);
    box-shadow: 0 18px 44px rgba(16, 24, 40, 0.09);
}

.service-output-card-1 { --output-color: var(--brand); }
.service-output-card-2 { --output-color: var(--premium-teal); }
.service-output-card-3 { --output-color: var(--premium-gold); }
.service-output-card-4 { --output-color: var(--accent); }
.service-output-card-5 { --output-color: var(--premium-green); }
.service-output-card-6 { --output-color: var(--premium-violet); }

.service-output-icon {
    width: 86px;
    height: 86px;
    border-radius: 18px 6px 18px 6px;
}

.service-output-icon-1 { background-position: -277px -99px; }
.service-output-icon-2 { background-position: -328px -226px; }
.service-output-icon-3 { background-position: -328px -353px; }
.service-output-icon-4 { background-position: -131px -353px; }
.service-output-icon-5 { background-position: -517px -353px; }
.service-output-icon-6 { background-position: -107px -99px; }

.service-final-cta {
    padding: 72px 0 88px;
    background:
        linear-gradient(135deg, rgba(8, 61, 95, 0.98), rgba(11, 79, 122, 0.92)),
        radial-gradient(circle at 86% 20%, rgba(224, 165, 27, 0.28), transparent 30%);
    color: #fff;
}

.service-final-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.service-final-cta h2 {
    max-width: 760px;
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
}

.service-final-cta p:not(.eyebrow) {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.service-final-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.footer-contact dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.footer-contact dl div {
    display: grid;
    gap: 4px;
}

.footer-contact dt {
    color: #98a2b3;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-contact dd {
    margin: 0;
    color: #fff;
    line-height: 1.55;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    background: var(--brand);
}

.scroll-tools {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: grid;
    gap: 10px;
}

.scroll-tool {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: var(--brand-strong);
    color: #fff;
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.22);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.scroll-tool:hover {
    transform: translateY(-2px);
    background: var(--brand);
}

.scroll-tool span {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
}

.scroll-tool-top {
    opacity: 0;
    pointer-events: none;
}

.scroll-tools.is-scrolled .scroll-tool-top {
    opacity: 1;
    pointer-events: auto;
}

.scroll-tools.is-scrolled .scroll-tool-down {
    opacity: 0.62;
}

@media (max-width: 1120px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-actions {
        display: flex;
        align-items: center;
    }

    .header-email {
        display: none;
    }

    .why-circuit,
    .why-orbit-item::before,
    .why-orbit-item::after {
        display: none;
    }

    .quality-orbit-board,
    .value-flow-panel,
    .home-path-grid,
    .premium-catalog,
    .service-hero-grid,
    .service-selector-grid,
    .customer-input-matrix,
    .service-output-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .image-page-hero-inner {
        grid-template-columns: minmax(0, 1fr) 132px;
        gap: 28px;
    }

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

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

    .home-news-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .home-project-cta-inner,
    .recruit-overview {
        grid-template-columns: 1fr;
    }

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

    .home-project-cta-visual {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: auto;
    }

    .home-project-cta-visual::before {
        left: 34px;
        right: 34px;
        top: 50%;
        bottom: auto;
        width: auto;
        height: 2px;
        translate: 0 -50%;
    }

    .home-project-cta-visual span,
    .home-project-cta-visual span:nth-child(2) {
        margin-left: 0;
    }

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

    .recruit-process article:nth-child(odd)::after {
        display: none;
    }

    .recruit-process article + article {
        border-left: 0;
    }

    .recruit-process article:nth-child(even) {
        border-left: 1px solid rgba(11, 79, 122, 0.1);
    }

    .recruit-process article:nth-child(n+3) {
        border-top: 1px solid rgba(11, 79, 122, 0.1);
    }

    .image-page-hero-mark {
        width: 132px;
        height: 132px;
    }

    .image-page-hero-mark .ui-icon {
        width: 58px;
        height: 58px;
    }

    .service-hero-flow {
        min-height: 500px;
    }

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

    .process-board::before {
        display: none;
    }

    .process-node:nth-child(3n)::before,
    .process-node:nth-child(3n)::after {
        display: none;
    }

    .pathway-panel {
        grid-template-columns: 1fr;
    }

    .pathway-media {
        grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
        grid-template-rows: auto;
    }

    .pathway-image-frame {
        min-height: 240px;
    }

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

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

    .quality-board-panel {
        min-height: 340px;
    }
}

@media (max-width: 720px) {
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 14px 16px;
        border-bottom: 1px solid var(--line);
        text-align: left;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        display: none;
        padding: 8px 12px 12px;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown.open .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: grid;
    }

    .site-nav .nav-dropdown-menu a {
        padding: 10px 12px;
        background: #f8fafc;
    }

    .why-orbit-item {
        width: auto;
    }

    .quality-orbit-board,
    .quality-orbit-grid,
    .value-flow-panel,
    .home-path-grid,
    .example-showcase,
    .example-showcase-grid,
    .premium-catalog,
    .equipment-card .spec-list,
    .image-page-hero-inner,
    .service-hero-grid,
    .service-selector-grid,
    .standard-service-process,
    .customer-input-matrix,
    .service-output-grid,
    .service-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .service-hero-premium {
        padding: 62px 0 54px;
    }

    .image-page-hero {
        min-height: 320px;
        padding: 58px 0 52px;
    }

    .image-page-hero-inner {
        min-height: auto;
        gap: 22px;
    }

    .image-page-hero h1 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .image-page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .image-page-hero-mark {
        width: 86px;
        height: 86px;
        border-radius: 18px 6px 18px 6px;
    }

    .image-page-hero-mark .ui-icon {
        width: 40px;
        height: 40px;
    }

    .home-news-strip {
        padding: 28px 0 32px;
    }

    .home-news-heading {
        padding-left: 16px;
    }

    .home-news-item a {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 15px 0;
    }

    .home-quality-cert-inner,
    .home-quality-cert-board,
    .home-iso-cert a,
    .home-project-cta-inner,
    .home-project-cta-visual,
    .home-gateways,
    .recruit-overview,
    .recruit-value-grid,
    .recruit-position-grid,
    .recruit-process,
    .contact-form-mode {
        grid-template-columns: 1fr;
    }

    .home-iso-cert a {
        gap: 18px;
        padding: 22px;
        text-align: center;
    }

    .home-quality-cert-card,
    .recruit-value-card,
    .recruit-process article {
        min-height: auto;
    }

    .home-project-cta {
        padding: 64px 0;
    }

    .home-project-cta::after {
        width: 240px;
        height: 240px;
        right: -80px;
    }

    .home-project-cta h2 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .home-project-cta-visual::before {
        left: 35px;
        right: auto;
        top: 22px;
        bottom: 22px;
        width: 2px;
        height: auto;
        translate: 0;
    }

    .home-project-cta-visual span {
        grid-template-columns: 64px minmax(0, 1fr);
        text-align: left;
    }

    .home-gateways,
    .home-gateway-card,
    .home-gateway-card a {
        min-height: 390px;
    }

    .home-gateway-card a {
        padding: 48px 24px;
    }

    .recruit-copy-panel,
    .recruit-position-card {
        padding: 22px;
    }

    .recruit-process article,
    .recruit-process article:nth-child(even),
    .recruit-process article:nth-child(n+3) {
        border-left: 0;
        border-top: 1px solid rgba(11, 79, 122, 0.1);
    }

    .recruit-process article:first-child {
        border-top: 0;
    }

    .recruit-process article::after {
        display: none;
    }

    .news-detail-hero {
        padding: 20px;
    }

    .news-detail-hero .detail-image {
        height: 260px;
    }

    .news-rich-text {
        font-size: 1rem;
        padding: 24px 18px;
    }

    .news-detail-actions,
    .related-news-grid {
        grid-template-columns: 1fr;
    }

    .news-detail-actions {
        display: grid;
    }

    .process-board {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-left: 24px;
    }

    .process-node:nth-child(3n)::before,
    .process-node:nth-child(3n)::after {
        display: block;
    }

    .process-node:last-child::before,
    .process-node:last-child::after {
        display: none;
    }

    .process-node::before {
        left: -28px;
        right: auto;
        top: 50%;
        translate: 0 -50%;
    }

    .process-node::after {
        left: -24px;
        top: 50%;
        width: 2px;
        height: calc(100% + 12px);
        background: linear-gradient(180deg, rgba(11, 79, 122, 0.32), rgba(21, 154, 156, 0.46));
        translate: 0;
    }

    .contact-info-row {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 13px;
        padding: 15px;
    }

    .contact-info-row > span {
        width: 46px;
        height: 46px;
    }

    .contact-map-card iframe {
        height: 245px;
    }

    .contact-map-footer {
        display: grid;
        gap: 10px;
    }

    .file-picker {
        align-items: stretch;
        flex-direction: column;
    }

    .file-picker-button {
        width: fit-content;
    }

    .scroll-tools {
        right: 14px;
        bottom: 14px;
    }

    .scroll-tool {
        width: 44px;
        height: 44px;
    }

    .service-hero-flow {
        min-height: auto;
        display: grid;
        gap: 12px;
        padding: 18px;
    }

    .service-hero-flow::before,
    .service-hero-flow::after,
    .service-orbit-lines,
    .service-flow-core {
        display: none;
    }

    .service-hero-node {
        position: static;
        width: auto;
        min-height: auto;
        grid-template-columns: auto minmax(0, 1fr);
        justify-content: start;
        text-align: left;
        transform: none;
    }

    .service-selector-card {
        min-height: auto;
    }

    .pathway-panel,
    .pathway-media {
        grid-template-columns: 1fr;
    }

    .pathway-panel {
        padding: 14px;
        gap: 16px;
    }

    .pathway-image-frame {
        min-height: 220px;
        padding: 14px;
    }

    .pathway-image {
        max-height: 220px;
    }

    .pathway-steps {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-left: 22px;
    }

    .pathway-steps::before {
        content: "";
        position: absolute;
        left: 8px;
        top: 12px;
        bottom: 12px;
        width: 2px;
        border-radius: 999px;
        background: rgba(11, 79, 122, 0.2);
    }

    .pathway-step {
        min-height: 98px;
        grid-template-columns: 74px minmax(0, 1fr);
        grid-template-rows: 1fr;
        align-items: center;
        justify-items: start;
        gap: 16px;
        padding: 14px 14px 14px 18px;
        text-align: left;
    }

    .pathway-step::before {
        content: "";
        position: absolute;
        left: -20px;
        top: 50%;
        width: 9px;
        height: 9px;
        border: 3px solid #fff;
        border-radius: 50%;
        background: var(--pathway-color);
        box-shadow: 0 0 0 2px var(--pathway-color);
        translate: 0 -50%;
    }

    .pathway-step::after {
        display: none;
    }

    .pathway-step-no {
        left: auto;
        right: 10px;
        top: 10px;
    }

    .pathway-step-icon {
        width: 70px;
        height: 70px;
        border-radius: 14px 5px 14px 5px;
        background-size: 590px 443px;
    }

    .pathway-step-icon-1-1 { background-position: -18px -81px; }
    .pathway-step-icon-1-2 { background-position: -87px -81px; }
    .pathway-step-icon-1-3 { background-position: -157px -81px; }
    .pathway-step-icon-1-4 { background-position: -226px -81px; }
    .pathway-step-icon-1-5 { background-position: -295px -81px; }
    .pathway-step-icon-1-6 { background-position: -363px -81px; }
    .pathway-step-icon-1-7 { background-position: -433px -81px; }
    .pathway-step-icon-1-8 { background-position: -502px -81px; }

    .pathway-step-icon-2-1 { background-position: -24px -184px; }
    .pathway-step-icon-2-2 { background-position: -107px -184px; }
    .pathway-step-icon-2-3 { background-position: -187px -184px; }
    .pathway-step-icon-2-4 { background-position: -267px -184px; }
    .pathway-step-icon-2-5 { background-position: -346px -184px; }
    .pathway-step-icon-2-6 { background-position: -421px -184px; }
    .pathway-step-icon-2-7 { background-position: -499px -184px; }

    .pathway-step-icon-3-1 { background-position: -24px -288px; }
    .pathway-step-icon-3-2 { background-position: -107px -288px; }
    .pathway-step-icon-3-3 { background-position: -187px -288px; }
    .pathway-step-icon-3-4 { background-position: -267px -288px; }
    .pathway-step-icon-3-5 { background-position: -346px -288px; }
    .pathway-step-icon-3-6 { background-position: -421px -288px; }
    .pathway-step-icon-3-7 { background-position: -499px -288px; }

    .pathway-step-label {
        min-height: 0;
        place-items: center start;
    }

    .service-final-actions {
        justify-content: flex-start;
    }

    .service-panel-media img {
        height: 190px;
    }

    .value-flow {
        margin-top: -42px;
    }

    .value-flow-step {
        border-right: 0;
        border-bottom: 1px solid rgba(11, 79, 122, 0.1);
    }

    .footer-grid,
    .footer-links ul {
        grid-template-columns: 1fr;
    }

    .example-showcase-main,
    .example-chip {
        min-height: 240px;
    }
}


.hero .eyebrow,
.service-hero-copy .eyebrow,
.image-page-hero .eyebrow {
    color: #fff !important;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.985);
    clip-path: inset(18% 0 0 0 round 14px);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        clip-path 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease,
        color 0.22s ease;
    transition-delay: calc(var(--reveal-index, 0) * 70ms);
    will-change: opacity, transform, clip-path;
}

.reveal-on-scroll.reveal-from-left {
    transform: translate3d(-28px, 18px, 0) scale(0.985);
    clip-path: inset(0 18% 0 0 round 14px);
}

.reveal-on-scroll.reveal-from-right {
    transform: translate3d(28px, 18px, 0) scale(0.985);
    clip-path: inset(0 0 0 18% round 14px);
}

.reveal-on-scroll.reveal-image {
    transform: translate3d(0, 34px, 0) scale(0.975);
    clip-path: inset(12% 0 12% 0 round 16px);
}

.reveal-on-scroll.is-visible,
.reveal-on-scroll.reveal-from-left.is-visible,
.reveal-on-scroll.reveal-from-right.is-visible,
.reveal-on-scroll.reveal-image.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    clip-path: inset(0 0 0 0 round 0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .reveal-on-scroll.reveal-from-left,
    .reveal-on-scroll.reveal-from-right,
    .reveal-on-scroll.reveal-image {
        opacity: 1;
        transform: none;
        clip-path: none;
        transition: none;
    }
}
