:root {
    --zc-primary: #1257b8;
    --zc-secondary: #091f3f;
    --zc-accent: #ff7e32;
    --zc-neutral: #5c6f88;
    --zc-border: #d4dde9;
    --zc-surface: #ffffff;
    --zc-surface-soft: #f3f6fb;
    --zc-surface-deep: #08172d;
    --zc-text: #14263f;
    --zc-text-light: #eef3fb;
    --zc-shadow: 0 20px 52px rgba(9, 28, 58, 0.08);
    --zc-radius: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    color: var(--zc-text);
    font: 16px/1.7 "Source Han Sans SC", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(18, 87, 184, 0.06), transparent 24%),
        radial-gradient(circle at left 18%, rgba(255, 126, 50, 0.05), transparent 18%),
        linear-gradient(180deg, #fbfcfe 0%, #f3f6fb 58%, #eef3f8 100%);
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

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

.zc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid rgba(18, 87, 184, 0.1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--zc-primary);
    background: linear-gradient(180deg, rgba(18, 87, 184, 0.09) 0%, rgba(18, 87, 184, 0.05) 100%);
}

.zc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.zc-btn:hover {
    transform: translateY(-1px);
}

.zc-btn--primary {
    background: linear-gradient(135deg, #0f499d 0%, #1766cf 100%);
    color: #fff;
    box-shadow: 0 16px 32px rgba(18, 87, 184, 0.24);
}

.zc-btn--accent {
    background: linear-gradient(135deg, #ff8938 0%, #ff6820 100%);
    color: #fff;
    box-shadow: 0 16px 32px rgba(255, 110, 35, 0.24);
}

.zc-btn--ghost,
.zc-btn--ghost-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
}

.zc-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--zc-primary);
    font-weight: 700;
}

.zc-inline-link::after {
    content: "→";
    transition: transform .2s ease;
}

.zc-inline-link:hover::after {
    transform: translateX(3px);
}

.zc-topbar {
    background: linear-gradient(90deg, rgba(7, 24, 48, 0.98) 0%, rgba(14, 40, 78, 0.97) 55%, rgba(21, 56, 108, 0.95) 100%);
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
}

.zc-topbar__inner,
.zc-header__inner,
.zc-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.zc-topbar__inner {
    min-height: 42px;
}

.zc-topbar__meta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.zc-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(211, 221, 234, 0.74);
    backdrop-filter: blur(18px);
    background: rgba(250, 252, 255, 0.84);
}

.zc-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(8, 24, 49, 0.08);
}

.zc-header__inner {
    position: relative;
    min-height: 82px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.zc-brand {
    flex: none;
}

.zc-brand img {
    max-height: 46px;
}

.zc-brand__text {
    display: inline-block;
    color: var(--zc-secondary);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.zc-nav {
    flex: none;
    min-width: 0;
    width: 100%;
}

.zc-nav__drawer {
    display: contents;
}

.zc-nav__summary,
.zc-nav__meta,
.zc-nav__close {
    display: none;
}

.zc-nav__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding: 0 0 0 28px;
    list-style: none;
    width: 100%;
}

.zc-nav__list li {
    list-style: none;
}

.zc-nav__list > li {
    position: relative;
    flex: 1 1 0;
    display: flex;
    justify-content: center;
}

.zc-nav__list > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    width: 100%;
    padding: 0 12px;
    border-radius: 999px;
    color: #20395c;
    font-weight: 600;
    white-space: nowrap;
}

.zc-nav__list > li > a:hover,
.zc-nav__list > li.current > a,
.zc-nav__list > li.navbar-on > a {
    color: var(--zc-primary);
    background: linear-gradient(180deg, rgba(18, 87, 184, 0.1) 0%, rgba(18, 87, 184, 0.05) 100%);
}

.zc-nav__list > li > ul {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 20;
    display: grid;
    gap: 6px;
    min-width: 186px;
    margin: 10px 0 0;
    padding: 12px;
    list-style: none;
    border: 1px solid rgba(214, 223, 234, 0.96);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 20px 48px rgba(8, 24, 49, 0.12);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.zc-nav__list > li:hover > ul,
.zc-nav__list > li:focus-within > ul {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.zc-nav__list > li > ul li {
    margin: 0;
}

.zc-nav__list > li > ul a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    color: #264468;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.zc-nav__list > li > ul a:hover,
.zc-nav__list > li > ul li.current a,
.zc-nav__list > li > ul li.navbar-on a {
    color: var(--zc-primary);
    background: rgba(14, 74, 168, 0.08);
}

.zc-nav__meta-link {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border: 1px solid rgba(214, 223, 234, 0.94);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 253, 0.98) 100%);
    color: var(--zc-secondary);
    box-shadow: 0 14px 28px rgba(8, 24, 49, 0.05);
}

.zc-nav__meta-link span {
    color: #6f8098;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.zc-nav__meta-link strong {
    font-size: 18px;
    line-height: 1.25;
}

.zc-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: none;
}

.zc-search-toggle {
    padding: 0;
    border: none;
    background: transparent;
    color: var(--zc-secondary);
    font-weight: 700;
    cursor: pointer;
}

.zc-search-panel {
    padding: 18px 0 24px;
    border-bottom: 1px solid rgba(214, 223, 234, 0.78);
    background: rgba(252, 253, 255, 0.96);
}

.zc-search-form,
.zc-inline-search {
    display: flex;
    gap: 12px;
}

.zc-search-form input,
.zc-inline-search input {
    flex: 1;
}

.zc-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 46px;
    height: 46px;
    padding: 0 12px;
    border: 1px solid var(--zc-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
}

.zc-nav-toggle__icon {
    display: grid;
    gap: 4px;
}

.zc-nav-toggle__bar {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--zc-secondary);
}

.zc-nav-toggle__label {
    display: none;
    color: #30517d;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.zc-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #07172e 0%, #10305d 56%, #1a4a8f 100%);
}

.zc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.08), transparent 18%),
        radial-gradient(circle at 84% 20%, rgba(255, 145, 70, 0.18), transparent 18%);
    pointer-events: none;
}

.zc-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 132px;
    background: linear-gradient(180deg, rgba(7, 23, 46, 0) 0%, rgba(7, 23, 46, 0.62) 100%);
    pointer-events: none;
}

.zc-hero__slider {
    position: relative;
    z-index: 1;
}

.zc-slide {
    position: relative;
    display: none;
    min-height: 700px;
    padding: 92px 0 98px;
    isolation: isolate;
    background: linear-gradient(135deg, #07172e 0%, #10305d 56%, #1a4a8f 100%);
}

.zc-slide.is-active {
    display: block;
}

.zc-slide::before {
    content: "";
    position: absolute;
    inset: -40px;
    z-index: -2;
    background-image: var(--zc-slide-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: blur(22px);
    opacity: .48;
    transform: scale(1.08);
}

.zc-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(96deg, rgba(7, 23, 46, 0.9) 0%, rgba(9, 31, 63, 0.78) 42%, rgba(11, 32, 61, 0.48) 100%),
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.16), transparent 26%),
        radial-gradient(circle at 82% 24%, rgba(255, 142, 76, 0.2), transparent 22%);
}

.zc-slide__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(410px, .96fr);
    align-items: center;
    gap: 64px;
    min-height: 100%;
}

.zc-slide__copy {
    position: relative;
    max-width: 700px;
    color: #fff;
}

.zc-slide__copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(40px, 5.2vw, 68px);
    line-height: 1.03;
    letter-spacing: -1.8px;
    text-wrap: balance;
}

.zc-slide__copy p {
    margin: 0;
    max-width: 600px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
}

.zc-slide__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.zc-slide__highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
}

.zc-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.zc-slide__actions .zc-btn {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 18px;
    font-size: 15px;
    letter-spacing: .02em;
}

.zc-slide__actions .zc-btn--ghost {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.03);
}

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

.zc-slide__metrics {
    margin-top: 34px;
}

.zc-metric-card {
    padding: 22px 24px;
    border: 1px solid rgba(215, 223, 235, 0.88);
    border-radius: var(--zc-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 254, 0.98) 100%);
    box-shadow: var(--zc-shadow);
}

.zc-metric-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--zc-secondary);
    font-size: 32px;
    line-height: 1;
}

.zc-metric-card span {
    color: var(--zc-neutral);
}

.zc-slide__metrics .zc-metric-card {
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.zc-slide__metrics .zc-metric-card strong {
    color: #fff;
}

.zc-slide__metrics .zc-metric-card span {
    color: rgba(255, 255, 255, 0.68);
}

.zc-slide__visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 34px 34px 54px 18px;
}

.zc-slide__media-shell {
    position: relative;
    width: min(100%, 520px);
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0 26px 70px rgba(5, 14, 29, 0.3);
    backdrop-filter: blur(16px);
}

.zc-slide__media-shell::after {
    box-shadow: 0 0 0 1px rgba(255, 152, 64, 0.12);
}

.zc-slide__media-shell::before,
.zc-slide__media-shell::after {
    content: "";
    position: absolute;
    width: 52px;
    height: 52px;
    border: 3px solid rgba(255, 152, 64, 0.86);
    pointer-events: none;
}

.zc-slide__media-shell::before {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.zc-slide__media-shell::after {
    right: -10px;
    bottom: -10px;
    border-left: none;
    border-top: none;
}

.zc-slide__media-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    color: rgba(255, 187, 93, 0.96);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.zc-slide__media-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 100%);
    aspect-ratio: 16 / 10.5;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.zc-slide__media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.zc-slide__media-card--placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 32px;
    color: #fff;
}

.zc-slide__media-card--placeholder strong {
    font-size: 20px;
    letter-spacing: 1px;
    color: rgba(255, 187, 93, 0.96);
}

.zc-slide__media-card--placeholder span {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
}

.zc-slide__media-note {
    position: absolute;
    left: 40px;
    bottom: 34px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 36px rgba(4, 12, 25, 0.22);
    backdrop-filter: blur(14px);
    color: #fff;
}

.zc-slide__media-note span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 187, 93, 0.96);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.zc-slide__media-note strong {
    display: block;
    font-size: 14px;
}

.zc-slide__visual-badge {
    position: absolute;
    top: 14px;
    right: 54px;
    z-index: 2;
    min-width: 230px;
    max-width: calc(100% - 120px);
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
    color: #fff;
    box-shadow: 0 18px 36px rgba(4, 12, 25, 0.18);
    backdrop-filter: blur(14px);
}

.zc-slide__visual-badge span,
.zc-slide__visual-panel span {
    display: block;
    color: rgba(255, 188, 102, 0.94);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.zc-slide__visual-badge strong {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.55;
}

.zc-slide__visual-panel {
    position: absolute;
    right: 42px;
    bottom: -16px;
    z-index: 2;
    display: grid;
    gap: 12px;
    width: min(calc(100% - 112px), 300px);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(7, 28, 56, 0.86) 0%, rgba(13, 42, 80, 0.78) 100%);
    box-shadow: 0 22px 44px rgba(4, 12, 25, 0.24);
    backdrop-filter: blur(14px);
}

.zc-slide__visual-panel div {
    display: grid;
    gap: 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.zc-slide__visual-panel div:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.zc-slide__visual-panel strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.45;
}

.zc-slide__nav {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(11, 24, 48, 0.38);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.zc-slide__nav--prev {
    left: -18px;
}

.zc-slide__nav--next {
    right: -18px;
}

.zc-hero__dots {
    position: absolute;
    right: 140px;
    bottom: 34px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zc-hero__dot {
    width: 34px;
    height: 4px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    cursor: pointer;
}

.zc-hero__dot.is-active {
    background: rgba(255, 152, 64, 0.96);
}

.zc-section {
    padding: 84px 0;
}

.zc-section--panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(235, 241, 248, 0.72) 100%);
}

.zc-section--dark {
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(255, 126, 50, 0.18), transparent 24%),
        radial-gradient(circle at top right, rgba(56, 117, 208, 0.12), transparent 22%),
        linear-gradient(135deg, #07172d 0%, #0f2a50 100%);
}

.zc-brand-band {
    position: relative;
    z-index: 2;
    margin-top: -18px;
    margin-bottom: -34px;
    padding: 0 0 28px;
}

.zc-brand-band::before {
    content: "";
    position: absolute;
    inset: 0 0 12px;
    background:
        radial-gradient(circle at 18% 18%, rgba(18, 87, 184, 0.08), transparent 30%),
        radial-gradient(circle at 82% 28%, rgba(255, 126, 50, 0.08), transparent 24%);
    pointer-events: none;
}

.zc-brand-band__panel {
    position: relative;
    overflow: hidden;
    padding: 34px 30px 30px;
    border: 1px solid rgba(213, 222, 234, 0.98);
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 253, 0.98) 100%);
    box-shadow: 0 28px 64px rgba(8, 24, 49, 0.12);
}

.zc-brand-band__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 18%, rgba(18, 87, 184, 0.06), transparent 24%),
        radial-gradient(circle at 92% 14%, rgba(255, 144, 70, 0.06), transparent 20%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.8) 0%, transparent 28%, transparent 72%, rgba(255, 255, 255, 0.45) 100%);
    pointer-events: none;
}

.zc-brand-band__panel::after {
    content: "";
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 39px;
    pointer-events: none;
}

.zc-brand-band__head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) auto;
    gap: 24px;
    align-items: start;
    margin-bottom: 22px;
}

.zc-brand-band__intro .zc-kicker {
    border-color: rgba(18, 87, 184, 0.12);
    color: var(--zc-primary);
    background: linear-gradient(180deg, rgba(18, 87, 184, 0.08) 0%, rgba(18, 87, 184, 0.04) 100%);
}

.zc-brand-band__intro h2 {
    margin: 18px 0 14px;
    color: #0f2343;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.02;
    letter-spacing: -1.2px;
}

.zc-brand-band__intro p {
    margin: 0;
    max-width: 820px;
    color: #5e718b;
    font-size: 15px;
    line-height: 1.9;
}

.zc-brand-band__meta {
    display: grid;
    gap: 6px;
    min-width: 190px;
    padding: 20px 22px;
    border: 1px solid rgba(18, 87, 184, 0.12);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(18, 87, 184, 0.08) 0%, rgba(18, 87, 184, 0.03) 100%);
    text-align: right;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.zc-brand-band__meta strong {
    color: #1257b8;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -1px;
}

.zc-brand-band__meta span {
    color: #5c6f88;
    font-size: 13px;
    font-weight: 600;
}

.zc-brand-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 92px;
    grid-auto-flow: dense;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(214, 223, 234, 0.98);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 253, 255, 0.98) 100%),
        repeating-linear-gradient(90deg, rgba(18, 87, 184, 0.03) 0 1px, transparent 1px 98px);
    box-shadow: 0 18px 42px rgba(8, 24, 49, 0.08);
}

.zc-brand-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(18, 87, 184, 0.04), transparent 18%),
        radial-gradient(circle at bottom right, rgba(255, 126, 50, 0.04), transparent 18%);
    pointer-events: none;
}

.zc-brand-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 18px 16px;
    border: 1px solid rgba(216, 225, 237, 0.98);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    box-shadow: 0 10px 22px rgba(8, 24, 49, 0.05);
    transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease, background .26s ease;
    grid-column: span 3;
}

.zc-brand-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.78) 18%, transparent 42%);
    transform: translateX(-120%);
    transition: transform .72s ease;
}

.zc-brand-card:hover {
    transform: translateY(-6px);
    border-color: rgba(18, 87, 184, 0.24);
    background: #fff;
    box-shadow: 0 18px 36px rgba(8, 24, 49, 0.12);
}

.zc-brand-card:hover::before {
    transform: translateX(120%);
}

.zc-brand-card:nth-child(8n + 1),
.zc-brand-card:nth-child(8n + 6) {
    grid-column: span 4;
}

.zc-brand-card:nth-child(8n + 3),
.zc-brand-card:nth-child(8n + 8) {
    grid-column: span 2;
}

.zc-brand-card:nth-child(8n + 4) {
    grid-column: span 3;
    grid-row: span 2;
}

.zc-brand-card:nth-child(8n + 5) {
    grid-column: span 5;
}

.zc-brand-card:nth-child(8n + 7) {
    grid-column: span 3;
}

.zc-brand-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 58px;
}

.zc-brand-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: saturate(1.03) contrast(1.02);
}

.zc-section__head {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.zc-section__head--left {
    margin-left: 0;
    text-align: left;
}

.zc-section__head--light .zc-kicker {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.zc-section__head h2 {
    margin: 18px 0 14px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.16;
    letter-spacing: -.8px;
}

.zc-section__head p {
    margin: 0;
    color: var(--zc-neutral);
    font-size: 16px;
}

.zc-section__head--light p {
    color: rgba(255, 255, 255, 0.76);
}

.zc-section__foot {
    margin-top: 32px;
    text-align: center;
}

.zc-service-grid,
.zc-card-grid,
.zc-spec-grid,
.zc-feature-stack,
.zc-contact-layout {
    display: grid;
    gap: 22px;
}

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

.zc-service-grid--detail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 28px;
}

.zc-service-card,
.zc-card,
.zc-panel,
.zc-rich-panel,
.zc-side-panel,
.zc-comment-item,
.zc-comments,
.zc-metric-card,
.zc-product-hero__info {
    border: 1px solid rgba(215, 223, 234, 0.9);
    border-radius: var(--zc-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 254, 0.98) 100%);
    box-shadow: var(--zc-shadow);
}

.zc-service-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
}

.zc-service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--zc-primary) 0%, var(--zc-accent) 100%);
}

.zc-service-card__no {
    color: rgba(18, 87, 184, 0.14);
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
}

.zc-service-card h3 {
    margin: 12px 0 10px;
    font-size: 24px;
}

.zc-service-card p {
    margin: 0 0 18px;
    color: var(--zc-neutral);
}

.zc-service-card.is-current {
    background:
        linear-gradient(180deg, #ffffff 0%, #f3f7fd 100%),
        radial-gradient(circle at top right, rgba(18, 87, 184, 0.08), transparent 34%);
}

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

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

.zc-card {
    overflow: hidden;
}

.zc-card__media {
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at top left, rgba(18, 87, 184, 0.08), transparent 24%),
        linear-gradient(135deg, #eef3f9 0%, #f8fafc 100%);
}

.zc-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zc-card__body {
    padding: 24px;
}

.zc-card__meta {
    margin-bottom: 12px;
    color: var(--zc-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
}

.zc-card__body h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.35;
}

.zc-card__body p {
    margin: 0;
    color: var(--zc-neutral);
}

.zc-card__actions,
.zc-cta__actions,
.zc-product-hero__actions,
.zc-form__actions,
.zc-footer__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.zc-card__actions {
    margin-top: 18px;
}

.zc-card__tags,
.zc-product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.zc-card__tags span,
.zc-product-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(18, 87, 184, 0.08);
    color: var(--zc-primary);
}

.zc-product-stage {
    display: grid;
    gap: 28px;
}

.zc-product-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(420px, .86fr);
    align-items: center;
    gap: 28px;
    padding: 30px 32px;
    border: 1px solid rgba(210, 220, 232, 0.92);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(244, 247, 252, 0.99) 100%),
        radial-gradient(circle at top right, rgba(18, 87, 184, 0.1), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 126, 50, 0.05), transparent 28%);
    box-shadow: 0 20px 48px rgba(8, 27, 58, 0.07);
}

.zc-product-overview__copy {
    max-width: 700px;
}

.zc-product-overview__copy h2 {
    margin: 14px 0 12px;
    font-size: clamp(34px, 4.3vw, 54px);
    line-height: 1.05;
    letter-spacing: -1.6px;
}

.zc-product-overview__copy p {
    margin: 0;
    color: var(--zc-neutral);
}

.zc-product-overview__rail {
    display: block;
}

.zc-product-overview__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.zc-product-overview__fact {
    display: flex;
    flex-direction: column;
    min-height: 104px;
    padding: 15px 16px;
    border: 1px solid rgba(214, 222, 233, 0.96);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 253, 0.96) 100%);
}

.zc-product-overview__fact span,
.zc-product-board__spec span,
.zc-product-board__pricebox span {
    display: block;
    color: #71829b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.zc-product-overview__fact strong {
    display: block;
    margin: 8px 0 6px;
    color: var(--zc-secondary);
    font-size: 18px;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.zc-product-overview__fact em {
    color: var(--zc-neutral);
    font-style: normal;
    font-size: 13px;
    line-height: 1.5;
}

.zc-product-overview__fact--quote {
    padding-bottom: 14px;
}

.zc-product-overview__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 18px;
    margin-top: auto;
    align-self: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #0f499d 0%, #1766cf 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: 0 12px 20px rgba(18, 87, 184, 0.18);
    transition: transform .22s ease, box-shadow .22s ease;
}

.zc-product-overview__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 24px rgba(18, 87, 184, 0.22);
}

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

.zc-product-board {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(210, 220, 232, 0.96);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(8, 27, 58, 0.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.zc-product-board:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 87, 184, 0.24);
    box-shadow: 0 28px 58px rgba(8, 27, 58, 0.12);
}

.zc-product-board__frame {
    position: relative;
    padding: 12px 12px 0;
    background:
        radial-gradient(circle at top left, rgba(18, 87, 184, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(247, 250, 254, 0.98) 0%, rgba(237, 243, 250, 0.94) 100%);
}

.zc-product-board__ribbon {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    max-width: calc(100% - 36px);
    padding: 7px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    background: linear-gradient(135deg, #114b9c 0%, #1970d2 100%);
    box-shadow: 0 12px 24px rgba(18, 87, 184, 0.22);
}

.zc-product-board__media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1.28 / 1;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(18, 87, 184, 0.11), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #eef3f9 100%);
}

.zc-product-board__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px 14px 10px;
}

.zc-product-board__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 18px 20px;
}

.zc-product-board__brandline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: #667a94;
    font-size: 12px;
    font-weight: 700;
}

.zc-product-board__brandline strong {
    color: var(--zc-primary);
    font-size: 11px;
    letter-spacing: .4px;
}

.zc-product-board__title {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.24;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.zc-product-board__summary {
    margin: 0;
    color: var(--zc-neutral);
    font-size: 13px;
    line-height: 1.65;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.zc-product-board__specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.zc-product-board__spec {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 9px 10px;
    border-radius: 15px;
    background: linear-gradient(180deg, #f8fafd 0%, #f2f6fb 100%);
}

.zc-product-board__spec strong {
    color: var(--zc-secondary);
    font-size: 13px;
    text-align: left;
}

.zc-product-board__pricebox {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    padding: 14px;
    border: 1px solid rgba(212, 224, 238, 0.95);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(255, 245, 236, 0.98) 100%);
}

.zc-product-board__pricebox div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
}

.zc-product-board__pricebox strong {
    color: #bc4f07;
    font-size: 16px;
    text-align: right;
}

.zc-product-board__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.zc-product-board__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(18, 87, 184, 0.08);
    color: var(--zc-primary);
    font-size: 12px;
    font-weight: 700;
}

.zc-product-board__chips .is-note {
    background: rgba(255, 122, 26, 0.12);
    color: #b9580d;
}

.zc-product-board__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.zc-product-board__action,
.zc-product-board__detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.zc-product-board__action:hover,
.zc-product-board__detail:hover {
    transform: translateY(-1px);
}

.zc-product-board__action.is-rent {
    border: 1px solid rgba(14, 74, 168, 0.16);
    background: rgba(14, 74, 168, 0.08);
    color: var(--zc-primary);
}

.zc-product-board__action.is-buy {
    border: 1px solid rgba(255, 122, 26, 0.16);
    background: rgba(255, 122, 26, 0.1);
    color: #c35a0b;
}

.zc-product-board__action.is-quote {
    background: linear-gradient(135deg, #0e4aa8 0%, #1d72d9 100%);
    color: #fff;
    box-shadow: 0 14px 24px rgba(14, 74, 168, 0.18);
}

.zc-product-board__detail {
    position: relative;
    min-height: 42px;
    margin-top: 14px;
    border: 1px solid rgba(192, 206, 224, 0.92);
    border-radius: 16px;
    color: var(--zc-secondary);
    font-size: 13px;
    letter-spacing: .4px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 248, 253, 0.99) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 20px rgba(10, 29, 58, 0.05);
}

.zc-product-board__detail::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(18, 87, 184, 0.08), rgba(18, 87, 184, 0.02) 28%, transparent 62%);
    opacity: .9;
    pointer-events: none;
}

.zc-product-board__detail::after {
    content: "→";
    position: relative;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 800;
    transition: transform .22s ease;
}

.zc-product-board__detail:hover {
    transform: translateY(-2px);
    border-color: rgba(18, 87, 184, 0.24);
    color: #0b2f69;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 18px 28px rgba(10, 29, 58, 0.1);
}

.zc-product-board__detail:hover::after {
    transform: translateX(3px);
}

.zc-about-block,
.zc-news-layout,
.zc-layout,
.zc-detail-layout,
.zc-about-page {
    display: grid;
    gap: 28px;
}

.zc-about-block {
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
}

.zc-about-block__panel,
.zc-contact-info {
    display: grid;
    gap: 22px;
}

.zc-about-block__copy p {
    color: var(--zc-neutral);
}

.zc-about-block__image,
.zc-about-visual,
.zc-contact-visual,
.zc-contact-asset__media {
    overflow: hidden;
    border-radius: calc(var(--zc-radius) + 2px);
    box-shadow: var(--zc-shadow);
}

.zc-about-block__image {
    aspect-ratio: 5 / 4;
    border: 1px solid rgba(217, 228, 239, 0.82);
    background: linear-gradient(180deg, #eef4fb 0%, #dbe8f9 100%);
}

.zc-about-block__image img,
.zc-about-visual img,
.zc-contact-visual img,
.zc-contact-asset__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zc-about-visual {
    aspect-ratio: 5 / 4;
    border: 1px solid rgba(217, 228, 239, 0.82);
    background: linear-gradient(180deg, #eef4fb 0%, #dbe8f9 100%);
}

.zc-panel,
.zc-rich-panel,
.zc-side-panel,
.zc-comments {
    padding: 28px;
}

.zc-feature-stack {
    grid-template-columns: 1fr;
}

.zc-feature-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
}

.zc-feature-item p {
    margin: 0;
    color: var(--zc-neutral);
}

.zc-check-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.zc-check-list li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 28px;
}

.zc-check-list li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zc-primary) 0%, var(--zc-accent) 100%);
}

.zc-news-layout {
    grid-template-columns: 1.2fr .8fr;
}

.zc-news-layout h3,
.zc-side-panel h3 {
    margin: 0 0 16px;
    font-size: 24px;
}

.zc-list-stack {
    display: grid;
    gap: 14px;
}

.zc-list-item {
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
}

.zc-list-item h4 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.45;
}

.zc-list-item p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.74);
}

.zc-list-item span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
}

.zc-list-item--compact {
    background: rgba(255, 255, 255, 0.05);
}

.zc-related-product-stack {
    display: grid;
    gap: 14px;
}

.zc-related-product {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(214, 223, 234, 0.92);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 253, 0.98) 100%);
    box-shadow: 0 12px 24px rgba(8, 27, 58, 0.05);
}

.zc-related-product__thumb {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(circle at top left, rgba(18, 87, 184, 0.1), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.zc-related-product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zc-related-product__body {
    min-width: 0;
}

.zc-related-product__meta {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(18, 87, 184, 0.08);
    color: var(--zc-primary);
    font-size: 11px;
    font-weight: 700;
}

.zc-related-product__body h4 {
    margin: 10px 0 8px;
    color: var(--zc-secondary);
    font-size: 18px;
    line-height: 1.45;
}

.zc-related-product__body h4 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.zc-related-product__model {
    display: block;
    margin-bottom: 10px;
    color: #6d7f98;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}

.zc-cta {
    position: relative;
    z-index: 2;
    margin-bottom: -54px;
    padding: 24px 0 0;
}

.zc-cta::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -90px;
    height: 220px;
    background:
        radial-gradient(circle at center, rgba(15, 46, 92, 0.18) 0%, rgba(15, 46, 92, 0) 68%),
        linear-gradient(180deg, rgba(243, 247, 251, 0) 0%, rgba(243, 247, 251, 0.92) 36%, rgba(12, 29, 58, 0.22) 100%);
    pointer-events: none;
}

.zc-cta__inner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 392px);
    align-items: center;
    gap: 34px;
    padding: 46px 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 34px;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 26%),
        radial-gradient(circle at top right, rgba(255, 130, 56, 0.26), transparent 24%),
        radial-gradient(circle at bottom left, rgba(96, 160, 255, 0.16), transparent 28%),
        linear-gradient(135deg, #081a36 0%, #16386a 56%, #20539d 100%);
    box-shadow:
        0 34px 80px rgba(7, 19, 38, 0.28),
        0 12px 28px rgba(7, 19, 38, 0.18);
}

.zc-cta__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: var(--zc-cta-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.04);
}

.zc-cta__inner::after {
    content: "";
    position: absolute;
    right: -88px;
    bottom: -118px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 72%);
    z-index: -1;
}

.zc-cta__inner.has-cover::before {
    opacity: .16;
}

.zc-cta__copy {
    position: relative;
    max-width: 760px;
    padding-right: 16px;
}

.zc-cta__copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 58px;
    width: 72px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
}

.zc-cta__copy h2 {
    margin: 20px 0 16px;
    font-size: clamp(32px, 4.2vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.zc-cta__copy p {
    margin: 0;
    max-width: 680px;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
}

.zc-cta__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.zc-cta__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(5, 18, 39, 0.24) 0%, rgba(5, 18, 39, 0.12) 100%);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.zc-cta__aside {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.07) 100%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 36%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 22px 44px rgba(8, 20, 40, 0.22);
    backdrop-filter: blur(14px);
}

.zc-cta__aside::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 72%);
}

.zc-cta__signal {
    display: grid;
    gap: 8px;
}

.zc-cta__signal strong {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.zc-cta__signal span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

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

.zc-cta__actions .zc-btn {
    justify-content: center;
    min-height: 56px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 16px 28px rgba(7, 18, 37, 0.18);
}

.zc-cta__actions .zc-btn--accent {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 18px 34px rgba(255, 110, 35, 0.28);
}

.zc-cta__actions .zc-btn--ghost-light {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.26);
}

.zc-cta__contact {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.zc-cta__contact span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    letter-spacing: 0.12em;
}

.zc-cta__contact a {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.zc-cta__contact a:hover {
    color: #ffd8bf;
}

.zc-page-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 72px 0 58px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 134, 64, 0.2), transparent 24%),
        radial-gradient(circle at left 18%, rgba(93, 149, 226, 0.12), transparent 24%),
        linear-gradient(135deg, #08192f 0%, #11315d 56%, #1a4a8f 100%);
}

.zc-page-hero::before {
    content: "";
    position: absolute;
    inset: -20px;
    z-index: -1;
    background-image: var(--zc-page-hero-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    filter: blur(4px);
    transform: scale(1.06);
}

.zc-page-hero.has-cover::before {
    opacity: .28;
}

.zc-page-hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.12;
}

.zc-page-hero p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.76);
}

.zc-page-hero--product {
    background:
        radial-gradient(circle at top right, rgba(18, 87, 184, 0.2), transparent 28%),
        radial-gradient(circle at left 18%, rgba(255, 126, 50, 0.12), transparent 20%),
        linear-gradient(135deg, #071528 0%, #11315d 100%);
}

.zc-page-hero--service {
    background:
        radial-gradient(circle at top left, rgba(255, 126, 50, 0.2), transparent 24%),
        radial-gradient(circle at top right, rgba(95, 154, 230, 0.12), transparent 22%),
        linear-gradient(135deg, #091f3d 0%, #1a457f 100%);
}

.zc-page-hero--contact {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 20%),
        radial-gradient(circle at top left, rgba(255, 126, 50, 0.14), transparent 18%),
        linear-gradient(135deg, #08192f 0%, #16407c 100%);
}

.zc-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.zc-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.zc-filter-tab {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(214, 223, 234, 0.94);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 253, 0.96) 100%);
    color: #29466e;
    font-weight: 600;
}

.zc-filter-tab.is-active,
.zc-filter-tab:hover {
    border-color: rgba(18, 87, 184, 0.18);
    background: rgba(18, 87, 184, 0.08);
    color: var(--zc-primary);
}

.zc-page-hero--news {
    background:
        radial-gradient(circle at top right, rgba(255, 126, 50, 0.18), transparent 24%),
        radial-gradient(circle at 18% 26%, rgba(92, 149, 224, 0.14), transparent 20%),
        linear-gradient(135deg, #08192f 0%, #0f2c56 52%, #1a4a8f 100%);
}

.zc-page-hero__meta--news {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.zc-page-hero__meta--news span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.zc-news-page {
    position: relative;
}

.zc-news-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 32px;
}

.zc-news-toolbar__search {
    width: min(100%, 360px);
    flex: none;
}

.zc-news-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1.36fr) minmax(280px, .64fr);
    gap: 24px;
    align-items: start;
}

.zc-news-feature,
.zc-news-panel,
.zc-news-feed-card {
    border: 1px solid rgba(214, 223, 234, 0.92);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 253, 0.98) 100%);
    box-shadow: var(--zc-shadow);
}

.zc-news-feature {
    overflow: hidden;
}

.zc-news-feature__media {
    display: block;
    aspect-ratio: 1.62 / 1;
    background:
        radial-gradient(circle at top left, rgba(18, 87, 184, 0.08), transparent 24%),
        linear-gradient(180deg, #eff4fa 0%, #dde7f4 100%);
}

.zc-news-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zc-news-feature__body {
    padding: 30px 32px 34px;
}

.zc-news-feature__meta,
.zc-news-feed-card__meta,
.zc-news-mini__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: #6f819a;
    font-size: 13px;
    font-weight: 700;
}

.zc-news-feature__tag,
.zc-news-feed-card__meta span,
.zc-news-mini__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(18, 87, 184, 0.08);
    color: var(--zc-primary);
}

.zc-news-feature__body h2 {
    margin: 18px 0 14px;
    font-size: clamp(30px, 3.4vw, 42px);
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.zc-news-feature__body p {
    margin: 0;
    color: var(--zc-neutral);
    font-size: 16px;
    line-height: 1.88;
}

.zc-news-feature__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
}

.zc-news-feature__footer span {
    color: #6d7f98;
    font-size: 14px;
}

.zc-news-side {
    display: grid;
    gap: 14px;
    align-content: start;
}

.zc-news-panel {
    padding: 24px;
}

.zc-news-panel--dark {
    position: sticky;
    top: 108px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 126, 50, 0.16), transparent 22%),
        linear-gradient(135deg, #08192f 0%, #12315f 100%);
    box-shadow: 0 22px 54px rgba(8, 25, 50, 0.18);
}

.zc-news-panel--dark .zc-kicker {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.zc-news-panel__head h2 {
    margin: 16px 0 0;
    font-size: 26px;
    line-height: 1.22;
    letter-spacing: -0.03em;
}

.zc-news-guide {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.zc-news-guide__item {
    display: grid;
    gap: 8px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(214, 223, 234, 0.88);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.zc-news-guide__item strong {
    color: var(--zc-secondary);
    font-size: 18px;
    line-height: 1.3;
}

.zc-news-guide__item p {
    margin: 0;
    color: var(--zc-neutral);
    font-size: 14px;
    line-height: 1.75;
}

.zc-news-guide__item:hover,
.zc-news-guide__item.is-active {
    transform: translateY(-2px);
    border-color: rgba(18, 87, 184, 0.22);
    box-shadow: 0 18px 34px rgba(8, 27, 58, 0.08);
}

.zc-news-guide__item.is-active {
    background:
        radial-gradient(circle at top right, rgba(18, 87, 184, 0.12), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f2f7fd 100%);
}

.zc-news-mini-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.zc-news-mini {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zc-news-mini:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.zc-news-mini__thumb {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1.15 / 1;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.zc-news-mini__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zc-news-mini__body {
    min-width: 0;
}

.zc-news-mini__meta {
    color: rgba(255, 255, 255, 0.74);
    gap: 8px;
}

.zc-news-mini__meta span {
    min-height: 26px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 12px;
}

.zc-news-mini h3 {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.5;
}

.zc-news-mini h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.zc-news-stream {
    margin-top: 26px;
}

.zc-news-stream__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.zc-news-stream__head h2 {
    margin: 0;
    color: var(--zc-secondary);
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.zc-news-stream__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    max-width: 560px;
}

.zc-news-stream__tab {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(214, 223, 234, 0.94);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 253, 0.96) 100%);
    color: #29466e;
    font-size: 14px;
    font-weight: 700;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}

.zc-news-stream__tab:hover,
.zc-news-stream__tab.is-active {
    transform: translateY(-1px);
    border-color: rgba(18, 87, 184, 0.18);
    background: rgba(18, 87, 184, 0.08);
    color: var(--zc-primary);
}

.zc-news-stream.is-loading {
    opacity: .72;
}

.zc-news-stream__dynamic {
    transition: opacity .2s ease;
}

.zc-news-feed {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.zc-news-feed-card {
    overflow: hidden;
}

.zc-news-feed-card__media {
    display: block;
    aspect-ratio: 1.7 / 1;
    background:
        radial-gradient(circle at top left, rgba(18, 87, 184, 0.08), transparent 24%),
        linear-gradient(180deg, #edf3f9 0%, #dce6f3 100%);
}

.zc-news-feed-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zc-news-feed-card__body {
    padding: 20px 20px 22px;
}

.zc-news-feed-card__body h3 {
    margin: 14px 0 10px;
    font-size: 21px;
    line-height: 1.34;
}

.zc-news-feed-card__body h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.zc-news-feed-card__body p {
    margin: 0;
    color: var(--zc-neutral);
    line-height: 1.76;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.zc-article-page {
    position: relative;
}

.zc-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
    gap: 26px;
    align-items: start;
}

.zc-article-shell {
    display: grid;
    gap: 22px;
}

.zc-article-cover,
.zc-article-overview,
.zc-article-main .zc-rich-panel {
    border: 1px solid rgba(214, 223, 234, 0.92);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 253, 0.98) 100%);
    box-shadow: var(--zc-shadow);
}

.zc-article-cover {
    overflow: hidden;
}

.zc-article-cover img {
    width: 100%;
    aspect-ratio: 1.66 / 1;
    object-fit: cover;
}

.zc-article-overview {
    padding: 30px 32px 32px;
}

.zc-article-overview__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.zc-article-overview__meta span,
.zc-article-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(18, 87, 184, 0.08);
    color: var(--zc-primary);
    font-size: 13px;
    font-weight: 700;
}

.zc-article-overview h2 {
    margin: 18px 0 14px;
    color: var(--zc-secondary);
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.zc-article-overview__lead {
    font-size: 17px;
}

.zc-article-overview p {
    margin: 0;
    color: var(--zc-neutral);
    line-height: 1.9;
}

.zc-article-overview__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.zc-article-overview__facts div {
    padding: 18px;
    border: 1px solid rgba(214, 223, 234, 0.88);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
}

.zc-article-overview__facts span {
    display: block;
    margin-bottom: 8px;
    color: #70829b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.zc-article-overview__facts strong {
    color: var(--zc-secondary);
    font-size: 16px;
    line-height: 1.45;
}

.zc-article-main .zc-rich-panel {
    padding: 30px;
}

.zc-article-content-head {
    margin-bottom: 24px;
}

.zc-article-content-head h2 {
    margin: 18px 0 12px;
    color: var(--zc-secondary);
    font-size: 30px;
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.zc-article-content-head p {
    margin: 0;
    color: var(--zc-neutral);
    line-height: 1.82;
}

.zc-article-main .zc-rich-text {
    font-size: 16px;
    line-height: 1.9;
}

.zc-article-main .zc-rich-text h2,
.zc-article-main .zc-rich-text h3,
.zc-article-main .zc-rich-text h4 {
    margin: 1.8em 0 .8em;
    color: var(--zc-secondary);
    line-height: 1.3;
}

.zc-article-main .zc-rich-text h2:first-child,
.zc-article-main .zc-rich-text h3:first-child,
.zc-article-main .zc-rich-text h4:first-child {
    margin-top: 0;
}

.zc-article-main .zc-rich-text p,
.zc-article-main .zc-rich-text li {
    line-height: 1.92;
}

.zc-article-main .zc-rich-text ul,
.zc-article-main .zc-rich-text ol {
    padding-left: 1.3em;
}

.zc-article-main .zc-rich-text blockquote {
    margin: 1.8em 0;
    padding: 18px 20px;
    border-left: 4px solid var(--zc-primary);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(18, 87, 184, 0.05) 0%, rgba(18, 87, 184, 0.02) 100%);
    color: #29476f;
}

.zc-article-aside {
    display: grid;
    gap: 18px;
}

.zc-article-side-panel {
    padding: 24px;
}

.zc-article-side-panel__head h3 {
    margin: 16px 0 0;
    color: var(--zc-secondary);
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.zc-article-root-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin-top: 16px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(18, 87, 184, 0.08);
    color: var(--zc-primary);
    font-size: 13px;
    font-weight: 700;
}

.zc-article-root-link:hover {
    background: rgba(18, 87, 184, 0.12);
}

.zc-article-side-nav {
    margin-top: 18px;
}

.zc-article-side-nav li {
    margin-bottom: 10px;
}

.zc-article-side-nav li a {
    min-height: 48px;
    border-radius: 16px;
    font-weight: 700;
}

.zc-article-side-panel--cta {
    background:
        radial-gradient(circle at top right, rgba(255, 126, 50, 0.12), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.zc-article-cta {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.zc-article-cta p {
    margin: 0;
    color: #4e6481;
    line-height: 1.85;
}

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

.zc-article-cta__actions .zc-btn {
    min-height: 52px;
    border-radius: 16px;
}

.zc-article-cta__hint {
    color: #6c8099;
    font-size: 13px;
    line-height: 1.7;
}

.zc-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.zc-related-article-stack {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.zc-related-article {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(214, 223, 234, 0.92);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 253, 0.98) 100%);
    box-shadow: 0 12px 24px rgba(8, 27, 58, 0.05);
}

.zc-related-article__thumb {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(circle at top left, rgba(18, 87, 184, 0.1), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.zc-related-article__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zc-related-article__body {
    min-width: 0;
}

.zc-related-article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: #6f819a;
    font-size: 12px;
    font-weight: 700;
}

.zc-related-article__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(18, 87, 184, 0.08);
    color: var(--zc-primary);
}

.zc-related-article__body h4 {
    margin: 10px 0 8px;
    color: var(--zc-secondary);
    font-size: 18px;
    line-height: 1.45;
}

.zc-related-article__body h4 a,
.zc-related-article__summary {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.zc-related-article__body h4 a {
    -webkit-line-clamp: 2;
}

.zc-related-article__summary {
    margin: 0 0 10px;
    color: var(--zc-neutral);
    line-height: 1.75;
    -webkit-line-clamp: 2;
}

.zc-news-mini--light {
    border-bottom-color: rgba(214, 223, 234, 0.9);
}

.zc-news-mini--light:last-child {
    border-bottom: none;
}

.zc-news-mini--light .zc-news-mini__meta {
    color: #70829b;
}

.zc-news-mini--light .zc-news-mini__meta span {
    background: rgba(18, 87, 184, 0.08);
    color: var(--zc-primary);
}

.zc-search-page {
    position: relative;
}

.zc-search-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.zc-search-toolbar__form {
    flex: 1;
}

.zc-search-toolbar__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.zc-search-toolbar__links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(214, 223, 234, 0.92);
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
    color: #29466e;
    font-weight: 600;
}

.zc-search-toolbar__links a:hover {
    color: var(--zc-primary);
    border-color: rgba(18, 87, 184, 0.18);
    background: rgba(18, 87, 184, 0.08);
}

.zc-search-summary,
.zc-search-feature {
    border: 1px solid rgba(214, 223, 234, 0.92);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 253, 0.98) 100%);
    box-shadow: var(--zc-shadow);
}

.zc-search-summary {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 30px;
    margin-bottom: 24px;
}

.zc-search-summary__main h2,
.zc-search-stream__head h2,
.zc-search-feature__body h2 {
    margin: 16px 0 0;
    color: var(--zc-secondary);
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.zc-search-summary__main h2,
.zc-search-stream__head h2 {
    font-size: 34px;
}

.zc-search-summary__main p,
.zc-search-stream__head p {
    margin: 12px 0 0;
    color: var(--zc-neutral);
}

.zc-search-summary__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.zc-search-summary__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(18, 87, 184, 0.08);
    color: var(--zc-primary);
    font-size: 13px;
    font-weight: 700;
}

.zc-search-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
    overflow: hidden;
}

.zc-search-feature__media {
    display: block;
    min-height: 100%;
    background:
        radial-gradient(circle at top left, rgba(18, 87, 184, 0.08), transparent 24%),
        linear-gradient(180deg, #edf3f9 0%, #dce6f3 100%);
}

.zc-search-feature__media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.zc-search-feature__body {
    padding: 30px 32px;
}

.zc-search-feature__body h2 {
    font-size: clamp(28px, 3.2vw, 40px);
}

.zc-search-feature__body p {
    margin: 16px 0 0;
    color: var(--zc-neutral);
    line-height: 1.9;
}

.zc-search-feature__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
}

.zc-search-feature__footer span {
    color: #70829b;
    font-size: 14px;
}

.zc-search-stream {
    margin-top: 30px;
}

.zc-search-stream__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.zc-search-empty {
    display: grid;
    gap: 22px;
}

.zc-inline-search input,
.zc-search-form input,
.zc-form input,
.zc-form textarea,
.zc-form select {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid rgba(214, 223, 234, 0.96);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    color: var(--zc-text);
}

.zc-form textarea {
    min-height: 138px;
    padding: 14px 16px;
    resize: vertical;
}

.zc-inline-search button,
.zc-search-form button {
    min-width: 110px;
    border: none;
    border-radius: 16px;
    background: var(--zc-primary);
    color: #fff;
    font-weight: 700;
}

.zc-layout {
    grid-template-columns: 300px minmax(0, 1fr);
}

.zc-side-panel--accent {
    background:
        radial-gradient(circle at top right, rgba(255, 126, 50, 0.12), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.zc-side-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.zc-side-nav li {
    list-style: none;
    margin-bottom: 8px;
}

.zc-side-nav li a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f7f9fc 0%, #f1f5fa 100%);
    color: #27456d;
}

.zc-side-nav li.is-active a,
.zc-side-nav li a:hover {
    color: #fff;
    background: linear-gradient(135deg, #114b9c 0%, #1a6bca 100%);
}

.zc-rich-panel {
    overflow: hidden;
}

.zc-rich-panel__content {
    min-width: 0;
}

.zc-rich-text,
.zc-rich-text p,
.zc-rich-text li,
.zc-rich-text td {
    color: #22324b;
}

.zc-rich-text img {
    border-radius: 18px;
}

.zc-rich-text table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
    white-space: nowrap;
}

.zc-rich-text iframe,
.zc-rich-text video {
    max-width: 100%;
}

.zc-detail-layout,
.zc-about-page {
    grid-template-columns: minmax(0, 1fr) 320px;
}

.zc-detail__cover {
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 24px;
}

.zc-detail__cover img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.zc-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 24px;
    margin-bottom: 24px;
}

.zc-product-hero__media {
    overflow: hidden;
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(18, 87, 184, 0.08), transparent 22%),
        linear-gradient(180deg, #eff4fa 0%, #dfe8f4 100%);
}

.zc-product-hero__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.zc-product-hero__info {
    padding: 28px;
}

.zc-product-hero__info h2 {
    margin: 18px 0 12px;
    font-size: 32px;
}

.zc-product-hero__info p {
    margin: 0;
    color: var(--zc-neutral);
}

.zc-product-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.zc-product-meta div {
    padding: 16px;
    border-radius: 18px;
    background: var(--zc-surface-soft);
}

.zc-product-meta strong {
    display: block;
    margin-bottom: 8px;
    color: var(--zc-secondary);
    font-size: 14px;
}

.zc-product-meta span {
    color: #28415f;
    font-weight: 600;
}

.zc-product-hero__actions {
    margin-top: 24px;
}

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

.zc-spec-item {
    padding: 18px 20px;
    border: 1px solid var(--zc-border);
    border-radius: 18px;
    background: var(--zc-surface-soft);
}

.zc-spec-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--zc-secondary);
}

.zc-pagination-shell {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-top: 34px;
    padding: 16px 20px 18px;
    border: 1px solid rgba(210, 221, 234, 0.94);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 126, 50, 0.08), transparent 26%),
        radial-gradient(circle at left center, rgba(18, 87, 184, 0.06), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 249, 253, 0.98) 100%);
    box-shadow:
        0 24px 54px rgba(8, 27, 58, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.zc-pagination-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(18, 87, 184, 0.3) 0%, rgba(255, 126, 50, 0.18) 42%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.zc-pagination-shell--news {
    margin-top: 22px;
}

.zc-pagination__meta-wrap {
    display: grid;
    gap: 4px;
    justify-items: center;
    text-align: center;
}

.zc-pagination__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--zc-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.zc-pagination__eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, rgba(18, 87, 184, 0.72) 0%, rgba(18, 87, 184, 0) 100%);
}

.zc-pagination__meta {
    color: #5b6f8a;
    font-size: 13px;
    font-weight: 700;
}

.zc-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
}

.zc-pagination--center {
    width: 100%;
}

.zc-pagination__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(210, 221, 234, 0.96);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 253, 0.98) 100%);
    color: #284767;
    font-weight: 700;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 8px 16px rgba(13, 36, 70, 0.04);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}

.zc-pagination__item:hover {
    transform: translateY(-2px);
    border-color: rgba(18, 87, 184, 0.2);
    color: var(--zc-primary);
    background: linear-gradient(180deg, rgba(241, 247, 255, 0.98) 0%, rgba(233, 242, 253, 0.98) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 12px 24px rgba(18, 87, 184, 0.1);
}

.zc-pagination__item.is-nav {
    gap: 10px;
    min-width: 94px;
    padding: 0 16px;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.zc-pagination__item.is-current {
    border-color: var(--zc-primary);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 26%),
        linear-gradient(135deg, #0f499d 0%, #1766cf 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(18, 87, 184, 0.2);
}

.zc-pagination__item.is-disabled {
    border-color: rgba(220, 227, 236, 0.96);
    background: linear-gradient(180deg, #f8fafd 0%, #f2f5f9 100%);
    color: #8da0ba;
    cursor: not-allowed;
    box-shadow: none;
}

.zc-pagination__arrow {
    font-size: 13px;
    line-height: 1;
    transition: transform .22s ease;
}

.zc-pagination__item.is-prev:hover .zc-pagination__arrow {
    transform: translateX(-3px);
}

.zc-pagination__item.is-next:hover .zc-pagination__arrow {
    transform: translateX(3px);
}

.zc-contact-layout {
    grid-template-columns: 360px minmax(0, 1fr);
}

.zc-contact-assets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.zc-contact-visual {
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(217, 228, 239, 0.82);
    background: linear-gradient(180deg, #eef4fb 0%, #dbe8f9 100%);
}

.zc-contact-asset__media {
    margin-top: 16px;
    background: linear-gradient(180deg, #eef4fb 0%, #dbe8f9 100%);
}

.zc-contact-asset__media img {
    aspect-ratio: 4 / 3;
}

.zc-contact-asset--qr .zc-contact-asset__media {
    max-width: 220px;
}

.zc-contact-asset--qr .zc-contact-asset__media img {
    aspect-ratio: 1 / 1;
}

.zc-contact-meta,
.zc-footer__meta {
    margin: 0;
    padding: 0;
    list-style: none;
}

.zc-contact-meta li,
.zc-footer__meta li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--zc-border);
}

.zc-contact-meta strong {
    color: var(--zc-secondary);
}

.zc-quote-panel {
    scroll-margin-top: 120px;
    padding: 30px;
    border: 1px solid rgba(217, 228, 239, 0.88);
    border-radius: calc(var(--zc-radius) + 4px);
    background: #fff;
    box-shadow: var(--zc-shadow);
}

.zc-quote-panel__head h2 {
    margin: 18px 0 10px;
    font-size: 34px;
}

.zc-quote-panel__head p {
    margin: 0 0 26px;
    color: var(--zc-neutral);
}

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

.zc-form label {
    display: block;
}

.zc-form label span {
    display: block;
    margin-bottom: 10px;
    color: var(--zc-secondary);
    font-weight: 700;
}

.zc-form__full {
    grid-column: 1 / -1;
}

.zc-form__message {
    min-height: 24px;
    color: var(--zc-primary);
    font-weight: 600;
}

.zc-comments {
    margin-top: 26px;
}

.zc-comment-list {
    display: grid;
    gap: 16px;
}

.zc-comment-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
}

.zc-comment-item__avatar img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.zc-comment-item__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.zc-comment-item__meta span {
    color: var(--zc-neutral);
    font-size: 13px;
}

.zc-form--comment {
    margin-top: 18px;
}

.zc-footer {
    position: relative;
    color: rgba(255, 255, 255, 0.84);
    background:
        radial-gradient(circle at top right, rgba(255, 126, 50, 0.12), transparent 22%),
        radial-gradient(circle at top left, rgba(73, 132, 214, 0.08), transparent 18%),
        linear-gradient(135deg, #07162c 0%, #0d2244 54%, #12315d 100%);
}

.zc-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 120px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.zc-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr 1fr;
    gap: 26px;
    padding: 112px 0 34px;
}

.zc-footer__title {
    margin-bottom: 16px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

.zc-footer__links h3,
.zc-footer__aside h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 20px;
}

.zc-footer__links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.zc-footer__links li {
    list-style: none;
    margin-bottom: 10px;
}

.zc-footer__links a {
    color: rgba(255, 255, 255, 0.74);
}

.zc-footer__links a:hover {
    color: #fff;
}

.zc-footer__qr {
    margin-top: 16px;
    width: 120px;
    overflow: hidden;
    border-radius: 16px;
}

.zc-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.zc-footer__bottom-inner {
    min-height: 60px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
}

.zc-mobile-quickbar {
    display: none;
}

.zc-empty {
    padding: 46px 32px;
    border: 1px dashed var(--zc-border);
    border-radius: calc(var(--zc-radius) + 2px);
    background: rgba(255, 255, 255, 0.92);
    text-align: center;
}

.zc-empty--hero {
    padding: 80px 32px;
}

.zc-empty h3,
.zc-empty h1 {
    margin: 18px 0 12px;
}

.zc-empty p {
    margin: 0;
    color: var(--zc-neutral);
}

.zc-section--full {
    min-height: 62vh;
    display: flex;
    align-items: center;
}

.zc-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.72);
}

.zc-breadcrumb a {
    color: #fff;
}

@media (max-width: 1180px) {
    .zc-service-grid,
    .zc-card-grid,
    .zc-service-grid--detail,
    .zc-footer__grid,
    .zc-brand-grid,
    .zc-product-board-grid,
    .zc-product-overview__facts,
    .zc-contact-assets,
    .zc-news-feed,
    .zc-related-product-stack,
    .zc-related-article-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zc-layout,
    .zc-detail-layout,
    .zc-contact-layout,
    .zc-about-page,
    .zc-about-block,
    .zc-news-layout,
    .zc-news-spotlight,
    .zc-article-layout,
    .zc-search-feature,
    .zc-slide__inner,
    .zc-product-hero {
        grid-template-columns: 1fr;
    }

    .zc-slide__inner,
    .zc-product-overview,
    .zc-news-spotlight,
    .zc-search-feature {
        gap: 26px;
    }

    .zc-news-panel--dark {
        position: static;
        top: auto;
    }

    .zc-product-overview {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .zc-product-overview__rail {
        display: block;
    }

    .zc-product-overview__cta {
        align-self: flex-start;
    }

    .zc-search-feature__media,
    .zc-news-feature__media {
        aspect-ratio: 16 / 9;
    }

    .zc-news-feature__body h2,
    .zc-product-hero__info h2,
    .zc-article-overview h2 {
        font-size: clamp(28px, 3.1vw, 36px);
    }

    .zc-footer__grid > :first-child {
        grid-column: 1 / -1;
    }

    .zc-brand-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: 86px;
        gap: 12px;
        padding: 12px;
    }

    .zc-brand-band {
        margin-top: -14px;
        margin-bottom: -28px;
        padding-bottom: 20px;
    }

    .zc-brand-band__panel {
        padding: 30px 24px 24px;
        border-radius: 30px;
    }

    .zc-brand-band__head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .zc-brand-band__meta {
        width: fit-content;
        min-width: 0;
        text-align: left;
    }
}

@media (max-width: 980px) {
    body.is-mobile-nav-open {
        overflow: hidden;
    }

    body.is-mobile-nav-open::after {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 34;
        background: rgba(6, 19, 39, 0.42);
        backdrop-filter: blur(4px);
    }

    .zc-topbar__inner,
    .zc-footer__bottom-inner,
    .zc-filter-bar,
    .zc-news-toolbar,
    .zc-news-stream__head,
    .zc-search-toolbar,
    .zc-search-stream__head,
    .zc-search-summary,
    .zc-pagination-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .zc-topbar__inner {
        padding: 10px 0;
    }

    .zc-topbar__notice {
        max-width: none;
    }

    .zc-header__inner {
        display: flex;
        min-height: 76px;
    }

    .zc-brand__text {
        font-size: 22px;
    }

    .zc-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: none;
    }

    .zc-nav {
        position: fixed;
        inset: 0;
        display: block;
        width: auto;
        padding: 0;
        border: none;
        border-radius: 0;
        background: rgba(6, 19, 39, 0.42);
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 40;
        transform: none;
        transition: opacity .22s ease, visibility .22s ease;
        overflow: hidden;
    }

    .zc-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .zc-nav__drawer {
        display: grid;
        width: min(90vw, 420px);
        height: 100%;
        margin-left: auto;
        padding: 26px 18px 24px;
        border-left: 1px solid rgba(214, 223, 234, 0.92);
        border-radius: 30px 0 0 30px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0%, rgba(244, 248, 253, 0.99) 100%),
            radial-gradient(circle at top right, rgba(18, 87, 184, 0.12), transparent 30%);
        box-shadow: -18px 0 48px rgba(8, 24, 49, 0.18);
        grid-template-rows: auto 1fr auto;
        gap: 18px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .26s ease;
    }

    .zc-nav.is-open .zc-nav__drawer {
        transform: translateX(0);
    }

    .zc-nav__summary {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        padding: 0 2px 10px;
        margin-bottom: 2px;
        border-bottom: 1px solid rgba(217, 226, 237, 0.76);
    }

    .zc-nav__summary-main {
        display: grid;
        gap: 8px;
    }

    .zc-nav__summary-label {
        display: inline-flex;
        align-items: center;
        color: #6d7f98;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .zc-nav__summary-main strong {
        color: var(--zc-secondary);
        font-size: 26px;
        line-height: 1.12;
        letter-spacing: -0.03em;
    }

    .zc-nav__summary-main p {
        margin: 0;
        color: #617691;
        font-size: 14px;
        line-height: 1.7;
    }

    .zc-nav__close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 1px solid rgba(214, 223, 234, 0.92);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.98);
        color: var(--zc-secondary);
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        box-shadow: 0 12px 22px rgba(8, 24, 49, 0.06);
    }

    .zc-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding-top: 0;
    }

    .zc-nav__list > li > a {
        width: 100%;
        min-height: 52px;
        padding: 0 18px;
        justify-content: flex-start;
        border: 1px solid rgba(214, 223, 234, 0.94);
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 253, 0.98) 100%);
        box-shadow: 0 10px 18px rgba(8, 24, 49, 0.04);
    }

    .zc-nav__list > li.current > a,
    .zc-nav__list > li.navbar-on > a {
        border-color: rgba(18, 87, 184, 0.24);
        box-shadow: 0 14px 26px rgba(18, 87, 184, 0.1);
    }

    .zc-nav__list > li > ul {
        position: static;
        left: auto;
        display: grid;
        gap: 8px;
        min-width: 0;
        margin: 8px 0 0;
        padding: 10px;
        border-radius: 18px;
        border: 1px solid rgba(221, 229, 239, 0.92);
        background: linear-gradient(180deg, #f7f9fc 0%, #f2f6fb 100%);
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .zc-nav__list > li > ul a {
        min-height: 42px;
        padding: 0 14px;
        border: 1px solid rgba(225, 232, 241, 0.92);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.82);
        font-size: 14px;
    }

    .zc-nav__meta {
        display: grid;
        gap: 12px;
        margin-top: 6px;
        padding-top: 18px;
        border-top: 1px solid rgba(214, 223, 234, 0.76);
    }

    .zc-nav__meta .zc-btn {
        width: 100%;
        min-height: 50px;
        border-radius: 18px;
    }

    .zc-header__actions {
        margin-left: auto;
        gap: 10px;
    }

    .zc-header__actions .zc-btn,
    .zc-search-toggle {
        min-height: 42px;
        padding: 0 16px;
    }

    .zc-search-toggle {
        border-radius: 999px;
        background: rgba(18, 87, 184, 0.08);
    }

    .zc-layout__side {
        order: -1;
    }

    .zc-detail__aside,
    .zc-article-aside,
    .zc-news-side {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zc-side-nav {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .zc-side-nav li {
        flex: none;
        margin-bottom: 0;
    }

    .zc-side-nav li a {
        min-height: 46px;
        white-space: nowrap;
    }

    .zc-search-panel {
        padding: 16px 0 20px;
    }

    .zc-search-form,
    .zc-inline-search {
        flex-direction: column;
    }

    .zc-search-form button,
    .zc-inline-search button {
        width: 100%;
    }

    .zc-page-hero {
        padding: 64px 0 50px;
    }

    .zc-page-hero h1 {
        font-size: clamp(34px, 6vw, 48px);
    }

    .zc-page-hero p {
        max-width: none;
    }

    .zc-section__head h2 {
        font-size: clamp(30px, 5vw, 40px);
    }

    .zc-slide {
        min-height: 0;
        padding: 58px 0 78px;
    }

    .zc-slide__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }

    .zc-slide__copy {
        max-width: none;
    }

    .zc-slide__copy h1 {
        margin: 18px 0 14px;
        font-size: clamp(36px, 8vw, 56px);
    }

    .zc-slide__copy p {
        max-width: none;
        font-size: 16px;
        line-height: 1.82;
    }

    .zc-slide__actions {
        margin-top: 24px;
    }

    .zc-slide__actions .zc-btn {
        min-height: 52px;
        min-width: calc(50% - 7px);
        border-radius: 16px;
    }

    .zc-slide__visual {
        justify-content: flex-start;
        padding: 14px 0 0;
    }

    .zc-slide__media-shell {
        max-width: 680px;
        padding: 20px;
        border-radius: 30px;
    }

    .zc-slide__visual-badge {
        top: 12px;
        right: 12px;
        min-width: 210px;
        max-width: calc(100% - 72px);
    }

    .zc-slide__visual-panel {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 680px;
        margin-top: 16px;
    }

    .zc-hero__dots {
        right: auto;
        left: 20px;
        bottom: 22px;
    }

    .zc-hero__dot {
        width: 28px;
    }

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

    .zc-cta__inner {
        grid-template-columns: 1fr;
        padding: 38px 34px;
    }

    .zc-cta__aside {
        max-width: none;
    }

    .zc-form__grid,
    .zc-product-meta {
        grid-template-columns: 1fr;
    }

    .zc-news-feature__body,
    .zc-news-feed-card__body,
    .zc-article-overview,
    .zc-product-hero__info {
        padding: 26px;
    }

    .zc-news-feed-card {
        height: 100%;
    }

    .zc-news-feed-card__body {
        display: flex;
        flex-direction: column;
    }

    .zc-news-feed-card__body .zc-inline-link {
        margin-top: auto;
    }

    .zc-news-toolbar__search,
    .zc-search-toolbar__form {
        width: 100%;
    }

    .zc-search-toolbar__links,
    .zc-search-summary__chips,
    .zc-pagination {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 92px;
    }

    .zc-container {
        width: min(100% - 28px, 1200px);
    }

    .zc-topbar__meta {
        flex-wrap: wrap;
        gap: 10px 14px;
    }

    .zc-header {
        background: rgba(250, 252, 255, 0.94);
    }

    .zc-header__inner {
        gap: 10px;
    }

    .zc-section {
        padding: 56px 0;
    }

    .zc-service-grid,
    .zc-card-grid,
    .zc-service-grid--detail,
    .zc-footer__grid,
    .zc-brand-grid,
    .zc-product-board-grid,
    .zc-news-feed,
    .zc-metric-grid,
    .zc-spec-grid,
    .zc-product-overview__facts,
    .zc-article-overview__facts,
    .zc-contact-assets {
        grid-template-columns: 1fr;
    }

    .zc-detail__aside,
    .zc-article-aside,
    .zc-news-side,
    .zc-news-feed,
    .zc-related-product-stack,
    .zc-related-article-stack {
        grid-template-columns: 1fr;
    }

    .zc-brand-band {
        margin-top: -10px;
        margin-bottom: -20px;
        padding-bottom: 14px;
    }

    .zc-brand-band__panel {
        padding: 22px 16px 18px;
        border-radius: 24px;
    }

    .zc-brand-band__head {
        gap: 14px;
        margin-bottom: 18px;
    }

    .zc-brand-band__intro h2 {
        font-size: clamp(28px, 9vw, 36px);
    }

    .zc-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 10px;
        grid-auto-rows: 82px;
    }

    .zc-brand-card {
        min-height: 92px;
        padding: 16px 14px;
        border-radius: 18px;
    }

    .zc-brand-card:nth-child(8n + 1),
    .zc-brand-card:nth-child(8n + 3),
    .zc-brand-card:nth-child(8n + 4),
    .zc-brand-card:nth-child(8n + 5),
    .zc-brand-card:nth-child(8n + 6),
    .zc-brand-card:nth-child(8n + 7),
    .zc-brand-card:nth-child(8n + 8) {
        grid-column: auto;
        grid-row: auto;
    }

    .zc-brand-card__logo {
        height: 44px;
    }

    .zc-page-hero__meta--news,
    .zc-product-meta,
    .zc-cta__actions,
    .zc-product-board__actions {
        gap: 10px;
    }

    .zc-slide__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .zc-slide__actions .zc-btn {
        width: 100%;
        min-width: 0;
    }

    .zc-slide__highlights span,
    .zc-cta__meta span {
        width: 100%;
        justify-content: center;
    }

    .zc-slide__media-shell {
        padding: 18px;
        border-radius: 24px;
    }

    .zc-slide__visual-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .zc-slide__visual-panel strong {
        font-size: 16px;
    }

    .zc-slide__media-note {
        position: static;
        margin-top: 14px;
    }

    .zc-slide__visual-badge {
        position: relative;
        top: auto;
        right: auto;
        min-width: 0;
        margin-top: 16px;
        border-radius: 18px;
    }

    .zc-quote-panel,
    .zc-panel,
    .zc-rich-panel,
    .zc-side-panel,
    .zc-comments,
    .zc-card__body,
    .zc-product-hero__info,
    .zc-news-feature__body,
    .zc-news-panel,
    .zc-news-feed-card__body,
    .zc-search-summary,
    .zc-search-feature__body,
    .zc-pagination-shell,
    .zc-article-overview,
    .zc-article-main .zc-rich-panel,
    .zc-article-side-panel {
        padding: 22px;
    }

    .zc-news-feature,
    .zc-news-panel,
    .zc-news-feed-card,
    .zc-news-guide__item,
    .zc-related-article,
    .zc-related-product,
    .zc-product-board,
    .zc-search-feature,
    .zc-search-summary,
    .zc-quote-panel {
        border-radius: 24px;
    }

    .zc-product-overview {
        padding: 24px 22px;
        border-radius: 24px;
    }

    .zc-product-overview__copy h2,
    .zc-product-board__title,
    .zc-news-stream__head h2,
    .zc-news-feature__body h2,
    .zc-search-summary__main h2,
    .zc-search-stream__head h2,
    .zc-search-feature__body h2,
    .zc-article-overview h2,
    .zc-article-content-head h2,
    .zc-product-hero__info h2 {
        letter-spacing: 0;
    }

    .zc-product-board__body,
    .zc-product-overview__fact {
        padding: 20px;
    }

    .zc-product-board__frame {
        padding: 12px 12px 0;
    }

    .zc-product-board__media {
        aspect-ratio: 1.4 / 1;
    }

    .zc-product-board__media img {
        padding: 14px 12px 8px;
    }

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

    .zc-product-board__specs {
        grid-template-columns: 1fr;
    }

    .zc-product-board__ribbon {
        top: 18px;
        left: 18px;
        max-width: calc(100% - 36px);
    }

    .zc-news-feature__footer,
    .zc-search-feature__footer,
    .zc-cta__contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .zc-news-mini {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 10px;
    }

    .zc-news-mini__thumb {
        border-radius: 14px;
    }

    .zc-filter-tabs,
    .zc-news-stream__tabs,
    .zc-search-toolbar__links,
    .zc-search-summary__chips,
    .zc-pagination {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .zc-filter-tab,
    .zc-news-stream__tab,
    .zc-search-toolbar__links a,
    .zc-search-summary__chips span,
    .zc-pagination__item {
        flex: none;
    }

    .zc-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        padding: 68px 0 118px;
    }

    .zc-footer__brand,
    .zc-footer__aside {
        grid-column: 1 / -1;
    }

    .zc-footer__brand,
    .zc-footer__links,
    .zc-footer__aside {
        padding: 20px 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    }

    .zc-footer__title {
        margin-bottom: 12px;
        font-size: 22px;
    }

    .zc-footer__links h3,
    .zc-footer__aside h3 {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .zc-footer__links li:last-child {
        margin-bottom: 0;
    }

    .zc-footer__bottom-inner {
        gap: 10px;
        justify-content: center;
        text-align: center;
    }

    .zc-mobile-quickbar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 36;
        display: block;
        padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 249, 253, 0.98) 100%);
        border-top: 1px solid rgba(211, 221, 234, 0.9);
        backdrop-filter: blur(18px);
        box-shadow: 0 -12px 30px rgba(8, 24, 49, 0.08);
    }

    .zc-mobile-quickbar__inner {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .zc-mobile-quickbar__item {
        display: grid;
        gap: 3px;
        min-height: 56px;
        padding: 9px 10px;
        border: 1px solid rgba(214, 223, 234, 0.94);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.96);
        color: var(--zc-secondary);
        box-shadow: 0 10px 24px rgba(8, 24, 49, 0.05);
        align-content: center;
    }

    .zc-mobile-quickbar__item span {
        color: #6f819a;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
    }

    .zc-mobile-quickbar__item strong {
        font-size: 14px;
        line-height: 1.35;
    }

    .zc-mobile-quickbar__item--accent {
        border-color: rgba(255, 126, 50, 0.22);
        background: linear-gradient(135deg, #ff8a3a 0%, #ff6a24 100%);
        color: #fff;
    }

    .zc-mobile-quickbar__item--accent span {
        color: rgba(255, 255, 255, 0.78);
    }

    .zc-rich-text,
    .zc-rich-text p,
    .zc-rich-text li {
        font-size: 15px;
        line-height: 1.86;
    }
}

@media (max-width: 560px) {
    .zc-container {
        width: min(100% - 24px, 1200px);
    }

    .zc-topbar {
        font-size: 12px;
    }

    .zc-topbar__inner {
        min-height: 0;
        padding: 8px 0;
    }

    .zc-topbar__notice {
        display: none;
    }

    .zc-topbar__meta {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }

    .zc-topbar__meta > * {
        min-width: 0;
        white-space: normal;
    }

    .zc-header__inner {
        min-height: 68px;
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }

    .zc-brand__text {
        font-size: 18px;
        letter-spacing: .5px;
    }

    .zc-brand {
        order: 1;
        min-width: 0;
        flex: 1;
    }

    .zc-nav-toggle {
        order: 3;
        margin-left: 0;
        width: auto;
        min-width: 92px;
        height: 42px;
        padding: 0 14px;
        border-radius: 14px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 247, 252, 0.98) 100%);
        box-shadow: 0 10px 20px rgba(8, 24, 49, 0.08);
    }

    .zc-nav-toggle__label {
        display: inline-block;
    }

    .zc-header__actions {
        order: 2;
        width: auto;
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .zc-nav {
        inset: 0;
    }

    .zc-nav__drawer {
        width: 100vw;
        padding: 14px 14px 18px;
        border-left: none;
        border-radius: 0;
    }

    .zc-nav__list > li > a {
        min-height: 48px;
        padding: 0 16px;
        border-radius: 16px;
        font-size: 15px;
    }

    .zc-nav__list > li > ul {
        padding: 8px;
        border-radius: 14px;
    }

    .zc-nav__summary-main strong {
        font-size: 20px;
    }

    .zc-nav__summary-main p {
        display: none;
    }

    .zc-nav__close {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 24px;
    }

    .zc-header__actions .zc-btn,
    .zc-search-toggle {
        width: auto;
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }

    .zc-header__actions .zc-btn {
        display: none;
    }

    .zc-header__actions:empty {
        display: none;
    }

    .zc-search-toggle {
        display: none;
        min-width: 42px;
        border: 1px solid rgba(214, 223, 234, 0.92);
        border-radius: 14px;
        color: #30517d;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 251, 0.98) 100%);
        box-shadow: 0 10px 20px rgba(8, 24, 49, 0.06);
        font-size: 0;
        position: relative;
    }

    .zc-search-toggle::before {
        content: "⌕";
        font-size: 18px;
        font-weight: 700;
        line-height: 1;
    }

    .zc-nav__summary {
        padding: 0 0 12px;
        margin-bottom: 4px;
    }

    .zc-nav__summary-label {
        font-size: 10px;
        letter-spacing: 0.14em;
    }

    .zc-nav__list {
        gap: 8px;
    }

    .zc-nav__list > li > ul {
        margin-top: 6px;
    }

    .zc-nav__meta {
        padding-top: 14px;
    }

    .zc-page-hero {
        padding: 56px 0 42px;
    }

    .zc-slide {
        padding: 44px 0 72px;
    }

    .zc-slide__copy h1,
    .zc-page-hero h1 {
        font-size: clamp(28px, 8.8vw, 40px);
        line-height: 1.08;
    }

    .zc-slide__copy p,
    .zc-page-hero p,
    .zc-cta__copy p {
        font-size: 14px;
        line-height: 1.76;
    }

    .zc-slide__highlights {
        gap: 10px;
        margin-top: 18px;
    }

    .zc-slide__highlights span {
        width: 100%;
        justify-content: center;
    }

    .zc-slide__nav {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }

    .zc-slide__nav--prev {
        left: 8px;
    }

    .zc-slide__nav--next {
        right: 8px;
    }

    .zc-page-hero__meta--news {
        gap: 10px;
        margin-top: 18px;
    }

    .zc-page-hero__meta--news span {
        width: 100%;
        justify-content: flex-start;
    }

    .zc-cta__inner {
        gap: 24px;
        padding: 28px 22px;
        border-radius: 28px;
    }

    .zc-cta__copy h2 {
        margin: 14px 0 12px;
        font-size: 30px;
    }

    .zc-cta__aside {
        padding: 20px;
        border-radius: 24px;
    }

    .zc-cta__signal strong {
        font-size: 20px;
    }

    .zc-cta__actions,
    .zc-article-cta__actions,
    .zc-product-board__actions {
        grid-template-columns: 1fr;
    }

    .zc-product-hero__actions,
    .zc-card__actions,
    .zc-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .zc-product-hero__actions .zc-btn,
    .zc-card__actions .zc-btn,
    .zc-form__actions .zc-btn,
    .zc-article-cta__actions .zc-btn {
        width: 100%;
    }

    .zc-product-overview__copy h2 {
        font-size: clamp(30px, 9vw, 38px);
    }

    .zc-product-board__spec,
    .zc-product-board__pricebox div,
    .zc-product-board__brandline {
        flex-direction: column;
        align-items: flex-start;
    }

    .zc-product-board__spec strong,
    .zc-product-board__pricebox strong {
        text-align: left;
    }

    .zc-news-mini {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .zc-news-mini h3 {
        font-size: 15px;
    }

    .zc-related-article,
    .zc-related-product {
        grid-template-columns: 1fr;
    }

    .zc-related-article__thumb,
    .zc-related-product__thumb {
        aspect-ratio: 1.35 / 1;
    }

    .zc-comment-item {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
        padding: 18px;
    }

    .zc-comment-item__avatar img {
        width: 44px;
        height: 44px;
    }

    .zc-side-panel,
    .zc-product-hero__info,
    .zc-article-overview,
    .zc-news-feature__body,
    .zc-news-feed-card__body {
        padding: 20px;
    }

    .zc-header__actions {
        display: none;
    }

    .zc-footer__grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 58px 0 114px;
    }

    .zc-footer__brand,
    .zc-footer__links,
    .zc-footer__aside {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .zc-footer__contact,
    .zc-footer__meta {
        display: grid;
        gap: 8px;
    }

    .zc-mobile-quickbar__inner {
        gap: 8px;
    }

    .zc-mobile-quickbar__item {
        min-height: 54px;
        padding: 9px 10px;
        border-radius: 16px;
    }

    .zc-quote-panel__head h2 {
        font-size: 28px;
    }
}

@media (max-width: 420px) {
    .zc-container {
        width: min(100% - 20px, 1200px);
    }

    .zc-kicker {
        gap: 6px;
        padding: 6px 10px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .zc-btn {
        min-height: 46px;
        padding: 0 18px;
    }

    .zc-section {
        padding: 50px 0;
    }

    .zc-page-hero {
        padding: 52px 0 38px;
    }

    .zc-nav {
        inset: 0;
    }

    .zc-nav__drawer {
        width: 100vw;
        padding-top: 12px;
    }

    .zc-slide__media-shell::before,
    .zc-slide__media-shell::after {
        display: none;
    }

    .zc-slide__media-shell,
    .zc-slide__visual-panel,
    .zc-slide__visual-badge,
    .zc-product-board,
    .zc-news-feature,
    .zc-news-panel,
    .zc-news-feed-card,
    .zc-search-summary,
    .zc-search-feature,
    .zc-quote-panel,
    .zc-related-article,
    .zc-related-product {
        border-radius: 20px;
    }

    .zc-slide__visual-panel,
    .zc-slide__visual-badge,
    .zc-cta__aside,
    .zc-product-overview,
    .zc-quote-panel,
    .zc-search-summary,
    .zc-search-feature__body,
    .zc-pagination-shell {
        padding: 18px;
    }

    .zc-metric-grid {
        grid-template-columns: 1fr;
    }

    .zc-footer__title {
        font-size: 22px;
    }

    .zc-brand__text {
        font-size: 17px;
    }

    .zc-nav-toggle {
        min-width: 84px;
        height: 40px;
    }

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

    .zc-mobile-quickbar__item {
        min-width: 0;
        padding-inline: 8px;
    }

    .zc-mobile-quickbar__item strong {
        overflow-wrap: anywhere;
        font-size: 13px;
    }

    .zc-mobile-quickbar__item--accent {
        grid-column: 1 / -1;
    }
}
