:root {
    --ink: #172033;
    --muted: #667085;
    --line: #d8dee8;
    --bg: #f5f7fa;
    --panel: #ffffff;
    --brand: #0b4f7a;
    --brand-strong: #083d5f;
    --accent: #b42318;
    --steel: #344054;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--panel);
    font-family: "Roboto", Arial, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 100;
    background: var(--brand);
    color: #fff;
    padding: 10px 14px;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.brand img,
.footer-brand img {
    border-radius: 8px;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    min-width: 72px;
    padding: 10px 8px;
    color: var(--steel);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--brand);
    border-color: var(--brand);
}

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

.language-switcher {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.language-switcher a {
    min-width: 40px;
    padding: 7px 9px;
    text-align: center;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.language-switcher a.active {
    background: var(--brand);
    color: #fff;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #101828;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 20, 34, 0.88), rgba(10, 20, 34, 0.5), rgba(10, 20, 34, 0.18));
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 112px 0 120px;
    color: #fff;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #ffb4ab;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 620px;
    margin-bottom: 28px;
    color: #e5e7eb;
    font-size: 1.25rem;
}

.section-title,
.cta-section .container {
    display: grid;
    gap: 14px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 10px 18px;
    font-weight: 800;
}

.btn.primary {
    background: var(--accent);
    color: #fff;
}

.btn.secondary {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.section {
    padding: 84px 0;
}

.metric-strip {
    position: relative;
    z-index: 2;
    margin-top: -74px;
    padding-bottom: 16px;
}

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

.metric-card {
    min-height: 150px;
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(216, 222, 232, 0.92);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.13);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-card strong {
    min-height: 52px;
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 900;
}

.metric-card .metric-label {
    color: var(--steel);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.55;
}

.page-hero {
    padding-top: 56px;
}

.band {
    background: var(--bg);
}

.section-title {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.15;
}

.section-title p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.05rem;
}

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

.info-card,
.capability-grid article {
    min-height: 190px;
    padding: 24px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.info-card h3,
.capability-grid h2 {
    margin-bottom: 8px;
    font-size: 1.12rem;
}

.info-card p,
.capability-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: #e6f2f8;
    color: var(--brand);
    font-weight: 900;
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
}

.section-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.check-grid span,
.feature-list li {
    display: block;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--brand);
    border-radius: 6px;
    font-weight: 700;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    counter-reset: flow;
    list-style: none;
}

.process-flow li {
    min-height: 118px;
    padding: 16px;
    background: var(--brand);
    color: #fff;
    border-radius: 8px;
    font-weight: 800;
}

.process-flow li::before {
    counter-increment: flow;
    content: counter(flow, decimal-leading-zero);
    display: block;
    margin-bottom: 18px;
    color: #b9e6fe;
    font-size: 0.82rem;
}

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

.image-grid figure {
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.image-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.image-grid figcaption {
    padding: 14px 16px;
    font-weight: 800;
}

.feature-list {
    display: grid;
    gap: 10px;
    padding: 0;
    list-style: none;
}

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

.profile-list {
    display: grid;
    gap: 12px;
}

.profile-list div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.profile-list dt {
    color: var(--muted);
    font-weight: 800;
}

.profile-list dd {
    margin: 0;
}

.breadcrumb {
    padding-top: 28px;
    display: flex;
    gap: 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.breadcrumb a {
    color: var(--brand);
    font-weight: 800;
}

.cta-section {
    padding: 74px 0;
    background: var(--brand-strong);
    color: #fff;
}

.cta-section p {
    max-width: 760px;
    color: #d8e7ef;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--steel);
    font-weight: 800;
}

.contact-form label span {
    color: var(--accent);
    font-size: 0.78rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 11px 12px;
    font: inherit;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.notice,
.note {
    padding: 12px 14px;
    border-radius: 6px;
}

.note {
    background: #eef6fb;
    color: var(--steel);
}

.notice.success {
    background: #ecfdf3;
    color: #027a48;
}

.notice.error {
    background: #fef3f2;
    color: #b42318;
}

.site-footer {
    background: #101828;
    color: #d0d5dd;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 36px;
    padding: 48px 0;
}

.site-footer h2 {
    color: #fff;
    font-size: 1rem;
}

.site-footer ul {
    padding: 0;
    list-style: none;
}

.footer-brand {
    color: #fff;
}

.footer-link {
    color: #fff;
    font-weight: 800;
}

.visitor-stats-widget {
    display: grid;
    gap: 8px;
}

.visitor-stats-widget .stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.visitor-stats-widget .stat-row:last-child {
    border-bottom: 0;
}

.visitor-stats-widget .stat-label {
    color: #98a2b3;
}

.visitor-stats-widget .stat-value {
    color: #fff;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
    color: #98a2b3;
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        border-bottom: 1px solid var(--line);
        padding: 14px 16px;
        min-width: 0;
        text-align: left;
    }

    .card-grid,
    .capability-grid,
    .content-grid,
    .image-grid,
    .metric-grid,
    .split,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .equipment-card,
    .detail-specs,
    .detail-note-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .brand > span:not(.brand-logo-wrap) {
        display: none;
    }

    .metric-strip {
        margin-top: 0;
        padding-top: 18px;
        background: var(--bg);
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        padding: 96px 0 76px;
    }

    .section {
        padding: 58px 0;
    }

    .check-grid,
    .process-flow {
        grid-template-columns: 1fr;
    }

    .profile-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* Polish pass: brand, motion, hover states */
.site-header {
    transition: box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(216, 222, 232, 0.72);
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

.brand {
    min-width: 210px;
}

.brand-logo-wrap {
    width: 96px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
}

.brand-logo-wrap img {
    width: auto;
    height: auto;
    max-width: 96px;
    max-height: 52px;
    object-fit: contain;
    border-radius: 0;
}

.footer-logo-wrap {
    width: 54px;
    height: 40px;
    display: flex;
    align-items: center;
}

.footer-logo-wrap img {
    width: auto;
    height: auto;
    max-width: 54px;
    max-height: 38px;
    object-fit: contain;
    border-radius: 0;
}

.brand strong {
    display: block;
    line-height: 1.05;
    font-size: 1.12rem;
    font-weight: 900;
}

.site-nav a,
.language-switcher a,
.btn,
.info-card,
.capability-grid article,
.check-grid span,
.feature-list li,
.image-grid figure,
.contact-form input,
.contact-form textarea {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.site-nav a {
    position: relative;
    border-bottom: 0;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
    transform: scaleX(1);
}

.language-switcher a:hover {
    background: #e6f2f8;
    color: var(--brand);
}

.language-switcher a.active:hover {
    background: var(--brand);
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(16, 24, 40, 0.18);
}

.btn.primary:hover {
    background: #c83225;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.88);
}

.info-card:hover,
.capability-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 79, 122, 0.28);
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.10);
}

.check-grid span:hover,
.feature-list li:hover {
    transform: translateX(3px);
    border-color: rgba(11, 79, 122, 0.28);
}

.image-grid figure:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.12);
}

.image-grid figure img,
.section-image {
    transition: transform 0.24s ease, filter 0.24s ease, box-shadow 0.24s ease;
}

.image-grid figure:hover img {
    transform: scale(1.025);
}

.section-image:hover {
    filter: saturate(1.04) contrast(1.02);
    box-shadow: 0 22px 52px rgba(16, 24, 40, 0.16);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(11, 79, 122, 0.12);
}

.empty-state {
    padding: 28px;
    background: #eef6fb;
    border: 1px solid rgba(11, 79, 122, 0.16);
    border-radius: 8px;
    color: var(--steel);
    font-weight: 700;
}

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

.content-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.content-card:hover,
.equipment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 79, 122, 0.28);
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.11);
}

.content-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--bg);
}

.content-card-body {
    padding: 20px;
}

.content-card h2,
.equipment-card h2 {
    margin-bottom: 8px;
    font-size: 1.18rem;
    line-height: 1.25;
}

.content-card p,
.equipment-card p {
    color: var(--muted);
}

.content-meta {
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-row span {
    display: inline-flex;
    padding: 5px 9px;
    background: #eef6fb;
    color: var(--brand);
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 800;
}

.equipment-list {
    display: grid;
    gap: 18px;
}

.equipment-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.equipment-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--bg);
}

.spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 16px 0;
}

.spec-list div {
    padding: 12px;
    background: var(--bg);
    border-radius: 6px;
}

.spec-list dt {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.spec-list dd {
    margin: 4px 0 0;
    font-weight: 800;
}

.detail-layout {
    max-width: 920px;
}

.detail-article h1 {
    max-width: 900px;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.detail-lead {
    color: var(--muted);
    font-size: 1.15rem;
}

.detail-image {
    width: 100%;
    max-height: 520px;
    margin: 24px 0;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.detail-specs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-note-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.detail-note-grid section {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.detail-note-grid h2 {
    font-size: 1rem;
}

.rich-text {
    margin: 24px 0;
    color: var(--steel);
    font-size: 1.04rem;
}

.text-link {
    color: var(--brand);
    font-weight: 900;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 980px) {
    .brand {
        min-width: 0;
    }

    .site-nav {
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .site-nav.open {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 620px) {
    .brand-logo-wrap {
        width: 86px;
        height: 52px;
    }

    .brand-logo-wrap img {
        max-width: 86px;
        max-height: 48px;
    }
}

/* Premium visual upgrade */
.hero {
    width: 100%;
    min-height: min(760px, calc(100svh - 76px));
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    z-index: 1;
    background: linear-gradient(180deg, rgba(245, 247, 250, 0), rgba(245, 247, 250, 0.96));
    pointer-events: none;
}

.hero-media img {
    transform: scale(1.04);
    filter: saturate(1.06) contrast(1.04);
}

.hero-media::after {
    background:
        linear-gradient(90deg, rgba(6, 14, 26, 0.92) 0%, rgba(6, 18, 32, 0.68) 46%, rgba(6, 18, 32, 0.22) 100%),
        linear-gradient(180deg, rgba(6, 18, 32, 0.18), rgba(6, 18, 32, 0.44));
}

.hero-content {
    z-index: 2;
}

.ui-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.metric-grid {
    gap: 18px;
}

.metric-card {
    position: relative;
    overflow: hidden;
    min-height: 168px;
    padding: 24px;
    border-color: rgba(11, 79, 122, 0.14);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96)),
        radial-gradient(circle at 85% 12%, rgba(11, 79, 122, 0.12), transparent 28%);
}

.metric-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 108px;
    height: 108px;
    border: 18px solid rgba(11, 79, 122, 0.06);
    border-radius: 999px;
}

.metric-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #e6f2f8;
    color: var(--brand);
}

.metric-card strong,
.metric-card .metric-label,
.metric-icon {
    position: relative;
    z-index: 1;
}

.metric-card strong {
    min-height: auto;
    font-size: clamp(2.15rem, 3.4vw, 3.15rem);
}

.metric-card:hover .metric-icon,
.info-card:hover .card-icon,
.capability-grid article:hover .capability-icon {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

.info-card,
.capability-grid article {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.98)),
        radial-gradient(circle at 88% 10%, rgba(11, 79, 122, 0.08), transparent 30%);
}

.info-card::before,
.capability-grid article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.info-card:hover::before,
.capability-grid article:hover::before {
    opacity: 1;
}

.card-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icon,
.capability-icon,
.check-grid i,
.feature-list i,
.image-grid figcaption i {
    width: 50px;
    height: 50px;
    margin: 0;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    background: #e6f2f8;
    color: var(--brand);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.card-code {
    color: rgba(11, 79, 122, 0.12);
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 900;
}

.info-card h3,
.capability-grid h2 {
    font-size: 1.18rem;
    line-height: 1.25;
}

.check-grid span,
.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    border-left: 0;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.check-grid i,
.feature-list i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.process-flow {
    position: relative;
    grid-template-columns: repeat(7, minmax(118px, 1fr));
    gap: 14px;
}

.process-flow::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 36px;
    height: 2px;
    background: linear-gradient(90deg, rgba(11, 79, 122, 0.16), rgba(180, 35, 24, 0.32));
}

.process-flow li {
    position: relative;
    min-height: 132px;
    padding: 18px 14px 16px;
    display: grid;
    align-content: start;
    gap: 16px;
    background: #fff;
    color: var(--ink);
    border: 1px solid rgba(11, 79, 122, 0.16);
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}

.process-flow li::before {
    display: none;
}

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

.process-flow li b {
    font-size: 0.92rem;
    line-height: 1.35;
}

.capability-icon {
    margin-bottom: 22px;
}

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

.image-grid figure {
    position: relative;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}

.image-grid figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
}

.image-grid figcaption i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

@media (min-width: 1280px) {
    .container {
        width: min(1220px, calc(100% - 48px));
    }
}

@media (max-width: 980px) {
    .hero {
        min-height: 660px;
    }

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

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

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

@media (max-width: 620px) {
    .hero {
        min-height: 620px;
    }

    .metric-card {
        min-height: 148px;
    }
}

/* Storytelling visual system */
.service-matrix {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-panel {
    position: relative;
    min-height: 210px;
    display: grid;
    grid-template-columns: 138px 1fr;
    gap: 22px;
    align-items: center;
    padding: 26px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 254, 0.98)),
        radial-gradient(circle at 92% 12%, rgba(180, 35, 24, 0.08), transparent 26%);
    border: 1px solid rgba(11, 79, 122, 0.16);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(16, 24, 40, 0.08);
}

.service-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--brand), var(--accent));
}

.service-panel-visual {
    position: relative;
    height: 136px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background:
        linear-gradient(145deg, #e6f2f8, #fff),
        repeating-linear-gradient(135deg, rgba(11, 79, 122, 0.05) 0 8px, transparent 8px 16px);
}

.service-panel-visual .ui-icon {
    width: 54px;
    height: 54px;
    color: var(--brand);
}

.service-panel-visual span {
    position: absolute;
    right: 12px;
    bottom: 10px;
    color: rgba(11, 79, 122, 0.22);
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
}

.service-panel h3 {
    margin-bottom: 8px;
    font-size: 1.24rem;
    line-height: 1.25;
}

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

.process-section {
    background:
        linear-gradient(180deg, #fff, #f7fafc);
}

.process-board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
}

.process-board::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    top: 42px;
    height: 2px;
    background: linear-gradient(90deg, rgba(11, 79, 122, 0.24), rgba(180, 35, 24, 0.26));
}

.process-node {
    position: relative;
    min-height: 220px;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(11, 79, 122, 0.15);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(16, 24, 40, 0.07);
}

.process-node-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 26px;
}

.process-node-head span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
}

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

.process-node h3 {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.25;
}

.process-node p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.capability-map::before {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    top: 76px;
    height: 2px;
    background: linear-gradient(90deg, rgba(11, 79, 122, 0.14), rgba(180, 35, 24, 0.26));
}

.capability-stage {
    position: relative;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(11, 79, 122, 0.16);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.07);
}

.capability-stage-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #e6f2f8;
    color: var(--brand);
}

.capability-stage-icon .ui-icon {
    width: 38px;
    height: 38px;
}

.capability-stage > span {
    position: absolute;
    right: 22px;
    top: 20px;
    color: rgba(11, 79, 122, 0.18);
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 900;
}

.capability-stage h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.capability-stage p {
    margin: 0;
    color: var(--muted);
}

.quality-board {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 20px;
    align-items: stretch;
}

.quality-board-panel {
    padding: 30px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(8, 61, 95, 0.98), rgba(11, 79, 122, 0.92)),
        radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.18), transparent 32%);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.board-label {
    color: #ffb4ab;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.quality-board-panel h3 {
    max-width: 360px;
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.12;
}

.quality-board-panel p:last-child {
    margin: 0;
    color: #d8e7ef;
}

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

.quality-board-grid article {
    min-height: 142px;
    padding: 18px;
    display: grid;
    align-content: space-between;
    background: #fff;
    border: 1px solid rgba(11, 79, 122, 0.14);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}

.quality-board-grid article div {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #e6f2f8;
    color: var(--brand);
}

.quality-board-grid article span {
    font-weight: 900;
    line-height: 1.3;
}

.proof-split .section-image {
    aspect-ratio: 16 / 11;
}

.example-list li {
    min-height: 72px;
}

@media (max-width: 1180px) {
    .process-board {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .process-board::before,
    .capability-map::before {
        display: none;
    }
}

@media (max-width: 980px) {
    .service-matrix,
    .quality-board,
    .capability-map {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 620px) {
    .service-panel {
        grid-template-columns: 1fr;
    }

    .service-panel-visual {
        height: 110px;
    }

    .process-board,
    .quality-board-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium catalog and detail pages */
.page-intro {
    position: relative;
    min-height: 260px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
    padding: 34px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8, 61, 95, 0.98), rgba(16, 24, 40, 0.94)),
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.16), transparent 34%);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.page-intro::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 220px;
    height: 220px;
    border: 30px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.page-intro .eyebrow {
    color: #ffb4ab;
}

.page-intro h1 {
    max-width: 760px;
    margin-bottom: 12px;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.page-intro p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: #d8e7ef;
    font-size: 1.08rem;
}

.page-intro-mark {
    position: relative;
    z-index: 1;
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.page-intro-mark .ui-icon {
    width: 72px;
    height: 72px;
    color: #fff;
}

.evidence-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: -8px 0 30px;
}

.evidence-strip span {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(11, 79, 122, 0.14);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
    font-weight: 900;
}

.evidence-strip i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    background: #e6f2f8;
    color: var(--brand);
}

.premium-catalog .content-card {
    border-color: rgba(11, 79, 122, 0.14);
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}

.catalog-image,
.equipment-image {
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.catalog-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.catalog-image span,
.equipment-image span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand);
    box-shadow: 0 12px 24px rgba(16, 24, 40, 0.14);
}

.content-card:hover .catalog-image img {
    transform: scale(1.04);
    filter: saturate(1.06) contrast(1.03);
}

.premium-catalog .content-card-body {
    display: grid;
    gap: 10px;
}

.premium-catalog .text-link {
    margin-top: 4px;
}

.equipment-card {
    grid-template-columns: 300px 1fr;
    align-items: stretch;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    border-radius: 8px;
}

.detail-layout {
    max-width: 1120px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 34px;
    align-items: center;
    margin-bottom: 28px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(11, 79, 122, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.detail-hero .detail-image {
    margin: 0;
    height: 430px;
    max-height: none;
}

.detail-note-grid section {
    display: grid;
    gap: 10px;
}

.detail-note-grid section > div {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #e6f2f8;
    color: var(--brand);
}

.contact-layout {
    grid-template-columns: 0.95fr 1.05fr;
}

.contact-layout .page-intro {
    min-height: 300px;
    grid-template-columns: 1fr;
}

.contact-layout .page-intro-mark {
    display: none;
}

@media (max-width: 980px) {
    .page-intro,
    .detail-hero,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .page-intro-mark {
        justify-self: start;
        width: 110px;
        height: 110px;
    }

    .page-intro-mark .ui-icon {
        width: 54px;
        height: 54px;
    }

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

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

@media (max-width: 620px) {
    .page-intro {
        padding: 24px;
    }

    .evidence-strip {
        grid-template-columns: 1fr;
    }

    .detail-hero {
        padding: 18px;
    }

    .detail-hero .detail-image {
        height: 300px;
    }
}

/* Home polish pass: brighter hero, unified metrics, infographic services */
.hero-media::after {
    background:
        linear-gradient(90deg, rgba(6, 14, 26, 0.72) 0%, rgba(6, 18, 32, 0.46) 44%, rgba(6, 18, 32, 0.08) 100%),
        linear-gradient(180deg, rgba(6, 18, 32, 0.08), rgba(6, 18, 32, 0.28));
}

.hero::before {
    height: 150px;
    background: linear-gradient(180deg, rgba(245, 247, 250, 0), rgba(245, 247, 250, 0.88));
}

.hero-media img {
    filter: saturate(1.12) contrast(1.02) brightness(1.1);
}

.metric-strip {
    margin-top: -62px;
}

.metric-shell {
    position: relative;
}

.metric-shell::before {
    content: "";
    position: absolute;
    inset: 50% 70px auto;
    height: 2px;
    background: linear-gradient(90deg, rgba(11, 79, 122, 0), rgba(11, 79, 122, 0.26), rgba(180, 35, 24, 0.18), rgba(11, 79, 122, 0));
}

.metric-grid {
    position: relative;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(11, 79, 122, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 54px rgba(16, 24, 40, 0.14);
    backdrop-filter: blur(14px);
}

.metric-card {
    min-height: 138px;
    display: grid;
    grid-template-columns: 62px 1fr;
    grid-template-areas:
        "icon value"
        "icon label";
    column-gap: 16px;
    align-content: center;
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    background: transparent;
}

.metric-card + .metric-card {
    border-left: 1px solid rgba(11, 79, 122, 0.12);
}

.metric-card::after {
    display: none;
}

.metric-icon {
    grid-area: icon;
    align-self: center;
    width: 58px;
    height: 58px;
    margin: 0;
    border-radius: 999px;
    background:
        linear-gradient(145deg, #e6f2f8, #fff);
    box-shadow: inset 0 0 0 1px rgba(11, 79, 122, 0.08);
    line-height: 0;
}

.metric-icon .ui-icon {
    width: 28px;
    height: 28px;
    display: block;
}

.metric-card strong {
    grid-area: value;
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
}

.metric-card .metric-label {
    grid-area: label;
    color: var(--ink);
}

.service-matrix {
    position: relative;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 24px;
    padding: 12px 0;
}

.service-matrix::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(11, 79, 122, 0.1), rgba(11, 79, 122, 0.35), rgba(180, 35, 24, 0.28), rgba(11, 79, 122, 0.1));
}

.service-panel {
    min-height: 260px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-content: start;
    padding: 24px;
    border: 0;
    border-radius: 28px 8px 28px 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.98));
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.08);
}

.service-panel::before {
    inset: 0;
    width: auto;
    height: 6px;
    background: var(--service-color, var(--brand));
}

.service-panel::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -44px;
    width: 124px;
    height: 124px;
    border: 20px solid rgba(11, 79, 122, 0.07);
    border-radius: 999px;
}

.service-panel-1 { --service-color: #0b4f7a; }
.service-panel-2 { --service-color: #1f9e89; }
.service-panel-3 { --service-color: #e0a51b; }
.service-panel-4 { --service-color: #b42318; }
.service-panel-5 { --service-color: #6f4bb2; }
.service-panel-6 { --service-color: #0f766e; }

.service-panel-media {
    position: relative;
    min-height: 150px;
    overflow: hidden;
    border-radius: 20px 6px 20px 6px;
    background: #dbe9f1;
}

.service-panel-media img {
    width: 100%;
    height: 180px;
    display: block;
    object-fit: cover;
    filter: saturate(1.06) contrast(1.03);
    transition: transform 0.28s ease;
}

.service-panel-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 18, 32, 0.02), rgba(6, 18, 32, 0.38)),
        linear-gradient(90deg, rgba(11, 79, 122, 0.2), transparent 62%);
}

.service-panel-visual {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 1;
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.12)),
        var(--service-color, var(--brand));
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.18);
}

.service-panel-visual .ui-icon {
    width: 44px;
    height: 44px;
    color: #fff;
}

.service-panel-visual b {
    position: absolute;
    right: -10px;
    top: -8px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 4px solid #fff;
    border-radius: 999px;
    background: var(--service-color, var(--brand));
    color: #fff;
    font-size: 0.85rem;
    box-shadow: 0 10px 20px rgba(16, 24, 40, 0.16);
}

.service-panel h3,
.service-panel p,
.service-panel-media {
    position: relative;
    z-index: 1;
}

.service-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 58px rgba(16, 24, 40, 0.12);
}

.service-panel:hover .service-panel-media img {
    transform: scale(1.05);
}

@media (max-width: 980px) {
    .metric-grid {
        border-radius: 20px;
    }

    .metric-card {
        border-radius: 18px;
    }

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

@media (max-width: 720px) {
    .metric-grid,
    .service-matrix {
        grid-template-columns: 1fr;
    }

    .metric-grid {
        gap: 8px;
    }

    .metric-card + .metric-card {
        border-left: 0;
        border-top: 1px solid rgba(11, 79, 122, 0.12);
    }

    .service-matrix::before,
    .metric-shell::before {
        display: none;
    }
}

/* Home visual storytelling pass: image-first cards, process thumbnails, orbit proof */
.service-panel {
    gap: 16px;
    padding: 18px;
}

.service-panel-media {
    min-height: 0;
    border-radius: 16px 6px 16px 6px;
}

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

.service-panel-step {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 1;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 3px solid #fff;
    border-radius: 999px;
    background: var(--service-color, var(--brand));
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
    box-shadow: 0 12px 22px rgba(16, 24, 40, 0.2);
}

.service-panel-body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.service-panel-title {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
}

.service-panel-title h3 {
    margin: 0;
}

.service-panel-visual {
    position: static;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(11, 79, 122, 0.08);
    box-shadow: none;
    color: var(--service-color, var(--brand));
}

.service-panel-visual .ui-icon {
    width: 24px;
    height: 24px;
    color: currentColor;
}

.service-panel-visual b {
    display: none;
}

.process-board {
    grid-template-columns: repeat(7, minmax(128px, 1fr));
    gap: 12px;
}

.process-node {
    min-height: 0;
    padding: 10px;
    overflow: hidden;
}

.process-node-media {
    position: relative;
    overflow: hidden;
    margin: -2px -2px 12px;
    border-radius: 6px;
    background: #dbe9f1;
}

.process-node-media img {
    width: 100%;
    height: 92px;
    display: block;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.03);
}

.process-node-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 18, 32, 0), rgba(6, 18, 32, 0.18));
}

.process-node-head {
    margin-bottom: 10px;
}

.process-node h3 {
    margin-bottom: 6px;
    font-size: 0.98rem;
}

.process-node p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.why-orbit {
    position: relative;
    min-height: 560px;
    margin-top: 12px;
    border-radius: 10px;
    background:
        radial-gradient(circle at center, rgba(11, 79, 122, 0.08) 0 16%, transparent 17%),
        radial-gradient(circle at center, transparent 0 31%, rgba(11, 79, 122, 0.12) 31.3% 31.8%, transparent 32.1%),
        linear-gradient(180deg, #fff, #f7fafc);
    overflow: hidden;
}

.why-orbit::before,
.why-orbit::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 430px;
    height: 430px;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(11, 79, 122, 0.22);
    border-radius: 999px;
}

.why-orbit::after {
    width: 300px;
    height: 300px;
    border-color: rgba(180, 35, 24, 0.16);
}

.why-orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 178px;
    height: 178px;
    display: grid;
    place-items: center;
    padding: 22px;
    transform: translate(-50%, -50%);
    border: 8px solid #fff;
    border-radius: 999px;
    background: linear-gradient(145deg, #fff, #eaf4f9);
    box-shadow: 0 24px 56px rgba(16, 24, 40, 0.16);
    text-align: center;
}

.why-orbit-center img {
    max-width: 118px;
    max-height: 72px;
    object-fit: contain;
}

.why-orbit-center span {
    color: var(--brand);
    font-weight: 900;
}

.why-orbit-item {
    position: absolute;
    z-index: 1;
    width: 190px;
    min-height: 120px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(11, 79, 122, 0.12);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.09);
    text-align: center;
}

.why-orbit-item::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 78px;
    height: 2px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(11, 79, 122, 0.45), rgba(11, 79, 122, 0));
}

.why-orbit-item i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #e6f2f8;
    color: var(--brand);
}

.why-orbit-item span {
    font-weight: 900;
    line-height: 1.35;
}

.why-orbit-item-1 { left: 13%; top: 12%; }
.why-orbit-item-2 { right: 13%; top: 12%; }
.why-orbit-item-3 { left: 6%; top: 50%; transform: translateY(-50%); }
.why-orbit-item-4 { right: 6%; top: 50%; transform: translateY(-50%); }
.why-orbit-item-5 { left: 16%; bottom: 10%; }
.why-orbit-item-6 { right: 16%; bottom: 10%; }

.why-orbit-item-1::after { transform: rotate(35deg); }
.why-orbit-item-2::after { transform: rotate(145deg); }
.why-orbit-item-3::after { transform: rotate(0deg); }
.why-orbit-item-4::after { transform: rotate(180deg); }
.why-orbit-item-5::after { transform: rotate(-35deg); }
.why-orbit-item-6::after { transform: rotate(-145deg); }

@media (max-width: 1120px) {
    .process-board {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .why-orbit {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        padding: 22px;
    }

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

    .why-orbit-center,
    .why-orbit-item {
        position: relative;
        inset: auto;
        width: auto;
        min-height: 118px;
        transform: none;
    }

    .why-orbit-center {
        grid-column: 1 / -1;
        justify-self: center;
        width: 180px;
    }

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

@media (max-width: 720px) {
    .process-board,
    .why-orbit {
        grid-template-columns: 1fr;
    }

    .process-node-media img {
        height: 150px;
    }
}
