.palette-page {
    --catalog-bg-0: #030816;
    --catalog-bg-1: #07112a;
    --catalog-bg-2: #0b1837;
    --catalog-surface: rgba(7, 17, 40, 0.92);
    --catalog-surface-2: rgba(10, 24, 56, 0.96);
    --catalog-surface-3: rgba(6, 12, 28, 0.92);
    --catalog-gold: #efb64b;
    --catalog-gold-strong: #ffd36a;
    --catalog-gold-soft: rgba(239, 182, 75, 0.14);
    --catalog-blue-soft: rgba(72, 128, 228, 0.18);
    --catalog-line: rgba(239, 182, 75, 0.28);
    --catalog-line-soft: rgba(255, 255, 255, 0.08);
    --catalog-text: rgba(245, 248, 255, 0.96);
    --catalog-muted: rgba(196, 207, 230, 0.74);
    --catalog-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);

    position: relative;
    margin-top: -42px;
    padding: 34px 0 72px;
    overflow: hidden;
    color: var(--catalog-text);
    background:
        radial-gradient(circle at 12% 18%, rgba(239, 182, 75, 0.18), transparent 24%),
        radial-gradient(circle at 82% 10%, rgba(72, 128, 228, 0.16), transparent 20%),
        linear-gradient(180deg, var(--catalog-bg-2) 0%, var(--catalog-bg-1) 42%, var(--catalog-bg-0) 100%);
}

.palette-page::before,
.palette-page::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.palette-page::before {
    inset: 0;
    opacity: 0.3;
    background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 18px 18px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 72%);
}

.palette-page::after {
    right: -120px;
    top: 120px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 182, 75, 0.1), transparent 62%);
    filter: blur(10px);
}

.palette-page .container-shell {
    position: relative;
    z-index: 1;
}

.palette-page .section-label {
    color: var(--catalog-gold-strong);
    letter-spacing: 0.22em;
}

.palette-page .section-title {
    color: #ffffff;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.26);
}

.palette-page .section-intro,
.palette-page p,
.palette-page li {
    color: var(--catalog-muted);
}

.category-hero-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 28px;
    padding: 36px;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid var(--catalog-line);
    box-shadow: var(--catalog-shadow);
    background:
        linear-gradient(135deg, rgba(6, 15, 36, 0.96) 0%, rgba(5, 10, 25, 0.98) 100%);
}

.category-hero-shell::before {
    content: "";
    position: absolute;
    left: 42%;
    top: 40px;
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--catalog-gold), transparent);
    opacity: 0.9;
}

.category-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.category-hero-copy p {
    max-width: 660px;
    font-size: 1.05rem;
    line-height: 1.82;
}

.category-hero-media {
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #081120 center/cover no-repeat;
    box-shadow: inset 0 0 0 1px rgba(239, 182, 75, 0.08);
}

.category-hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 11, 24, 0.14) 0%, rgba(6, 11, 24, 0.66) 100%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 38%);
}

.metric-grid-shell,
.palette-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.metric-grid-shell .surface-card,
.palette-stat-card {
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(14, 26, 54, 0.92), rgba(8, 15, 31, 0.92));
    border: 1px solid rgba(239, 182, 75, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.metric-value,
.palette-stat-value {
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.metric-label,
.palette-stat-label {
    margin-top: 8px;
    color: var(--catalog-muted);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.two-column-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.list-panel-shell,
.info-panel-shell,
.cta-panel-shell {
    position: relative;
    padding: 30px 32px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(10, 21, 49, 0.86), rgba(7, 13, 28, 0.92));
    border: 1px solid var(--catalog-line-soft);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.26);
}

.list-panel-shell::before,
.info-panel-shell::before,
.cta-panel-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(239, 182, 75, 0.16), transparent 42%, rgba(72, 128, 228, 0.18));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.bullet-list-shell {
    margin: 16px 0 0;
    padding-left: 18px;
}

.bullet-list-shell li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.palette-categories .card-grid-shell {
    margin-top: 34px;
}

.category-card-shell,
.document-card-shell,
.reference-card-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--catalog-line-soft);
    background: linear-gradient(180deg, rgba(9, 20, 46, 0.88), rgba(6, 12, 28, 0.94));
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.category-card-shell {
    grid-column: span 4;
}

.reference-card-shell {
    grid-column: span 6;
    display: grid;
    grid-template-columns: 220px 1fr;
}

.document-card-shell {
    grid-column: span 6;
}

.category-card-shell:hover,
.document-card-shell:hover,
.reference-card-shell:hover {
    transform: translateY(-8px);
    border-color: var(--catalog-line);
    box-shadow: 0 34px 85px rgba(0, 0, 0, 0.4);
}

.card-media-shell {
    position: relative;
    aspect-ratio: 1.08;
    background: #0a1224 center/cover no-repeat;
}

.reference-card-shell .card-media-shell {
    aspect-ratio: auto;
    min-height: 100%;
}

.card-media-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(4, 8, 18, 0.52));
}

.card-body-shell {
    padding: 24px;
}

.card-body-shell h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.3rem;
    line-height: 1.2;
}

.spec-chips-shell {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.spec-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--catalog-gold-soft);
    color: var(--catalog-gold-strong);
    border: 1px solid rgba(239, 182, 75, 0.18);
    font-size: 0.85rem;
    font-weight: 800;
}

.card-link-shell {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: #ffffff;
    font-weight: 800;
}

.card-link-shell::after {
    content: "→";
}

.catalog-toolbar-shell {
    position: sticky;
    top: 102px;
    z-index: 20;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid var(--catalog-line-soft);
    background:
        linear-gradient(180deg, rgba(7, 15, 34, 0.94), rgba(5, 10, 22, 0.94));
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px);
}

.catalog-toolbar-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px 120px;
    gap: 12px;
    align-items: center;
}

.catalog-search-shell,
.catalog-sort-shell {
    position: relative;
}

.catalog-search-input,
.catalog-sort-select {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.96);
    color: #0a1325;
    font: inherit;
    font-weight: 700;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.catalog-search-input:focus,
.catalog-sort-select:focus {
    border-color: rgba(239, 182, 75, 0.5);
    box-shadow: 0 0 0 4px rgba(239, 182, 75, 0.12);
}

.catalog-filter-open {
    min-height: 54px;
}

.catalog-chipbar-shell {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.catalog-chip-filter {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 800;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.catalog-chip-filter:hover,
.catalog-chip-filter.is-active {
    border-color: var(--catalog-line);
    background: rgba(239, 182, 75, 0.14);
    color: var(--catalog-gold-strong);
    transform: translateY(-1px);
}

.catalog-list-shell {
    display: grid;
    gap: 24px;
}

.catalog-row-shell {
    position: relative;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--catalog-line-soft);
    background:
        radial-gradient(circle at top right, rgba(239, 182, 75, 0.12), transparent 24%),
        linear-gradient(145deg, rgba(9, 20, 46, 0.96), rgba(4, 10, 24, 0.96));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.catalog-row-shell:hover {
    transform: translateY(-6px);
    border-color: var(--catalog-line);
    box-shadow: 0 34px 95px rgba(0, 0, 0, 0.42);
}

.catalog-row-shell::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 24px;
    border: 1px solid rgba(239, 182, 75, 0.08);
    pointer-events: none;
}

.catalog-thumb-shell {
    position: relative;
    min-height: 280px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(239, 182, 75, 0.18);
    background:
        linear-gradient(180deg, rgba(4, 10, 24, 0.24), rgba(4, 10, 24, 0.64)),
        #0a1224 center/cover no-repeat;
}

.catalog-thumb-shell::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px 18px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(4, 10, 24, 0.88), rgba(4, 10, 24, 0.25));
    box-shadow: inset 0 0 0 1px rgba(239, 182, 75, 0.1);
}

.catalog-info-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
}

.catalog-head-shell {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: flex-start;
}

.catalog-title-shell {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.8rem, 2vw, 2.3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.catalog-desc-shell {
    margin: 12px 0 0;
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--catalog-muted);
}

.catalog-cta-shell {
    min-width: 170px;
    display: grid;
    gap: 12px;
    justify-items: stretch;
}

.catalog-cta-stack {
    display: grid;
    gap: 10px;
}

.catalog-quote-shell {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(239, 182, 75, 0.24);
    background: rgba(239, 182, 75, 0.12);
    color: var(--catalog-gold-strong);
    font-weight: 800;
}

.catalog-spec-grid-shell,
.catalog-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.spec-kv {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-kv .k {
    display: block;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.spec-kv .v {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.3;
}

.catalog-badges-shell {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.catalog-badge-shell {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    font-weight: 800;
}

.catalog-badge-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.catalog-badge-dot.is-on {
    background: var(--catalog-gold);
    box-shadow: 0 0 0 4px rgba(239, 182, 75, 0.12);
}

.catalog-chip-row-shell {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: auto;
}

.catalog-chip-shell {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(72, 128, 228, 0.12);
    border: 1px solid rgba(72, 128, 228, 0.16);
    color: rgba(211, 228, 255, 0.95);
    font-size: 0.84rem;
    font-weight: 800;
}

.catalog-toggle-shell {
    width: 100%;
}

.catalog-extra-shell {
    display: none;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-row-shell.is-expanded .catalog-extra-shell {
    display: block;
}

.catalog-extra-title {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.palette-code {
    display: inline-grid;
    gap: 6px;
    padding: 13px 16px;
    border-radius: 18px;
    background: rgba(239, 182, 75, 0.1);
    border: 1px solid rgba(239, 182, 75, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.palette-code-label {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 213, 121, 0.94);
}

.palette-code-value {
    font-size: clamp(1.4rem, 1.9vw, 1.9rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #ffffff;
    line-height: 1;
}

.catalog-filter-overlay {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1400;
    background: rgba(2, 8, 18, 0.68);
    backdrop-filter: blur(12px);
}

.catalog-filter-overlay.is-open {
    display: block;
}

.catalog-filter-sheet {
    position: absolute;
    left: 50%;
    bottom: 24px;
    width: min(calc(100% - 24px), 720px);
    transform: translateX(-50%) translateY(18px);
    opacity: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--catalog-line-soft);
    background: linear-gradient(180deg, rgba(10, 21, 49, 0.98), rgba(6, 12, 28, 0.98));
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.catalog-filter-overlay.is-open .catalog-filter-sheet {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.catalog-filter-head,
.catalog-filter-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-filter-footer {
    border-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-filter-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 900;
}

.catalog-filter-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-size: 1.3rem;
    cursor: pointer;
}

.catalog-filter-body {
    padding: 20px 22px;
    display: grid;
    gap: 18px;
}

.catalog-filter-group {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.catalog-filter-group-title {
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 900;
}

.catalog-filter-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.catalog-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.catalog-check input {
    width: 18px;
    height: 18px;
}

.document-meta,
.reference-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
}

@media (max-width: 1100px) {
    .category-hero-shell,
    .catalog-row-shell,
    .two-column-shell {
        grid-template-columns: 1fr;
    }

    .category-card-shell,
    .document-card-shell,
    .reference-card-shell {
        grid-column: span 12;
    }

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

    .catalog-head-shell {
        flex-direction: column;
    }

    .catalog-cta-shell {
        width: 100%;
        min-width: 0;
    }

    .catalog-chip-row-shell {
        margin-left: 0;
    }
}

@media (max-width: 760px) {
    .palette-page {
        margin-top: -18px;
        padding-top: 18px;
        padding-bottom: 48px;
    }

    .category-hero-shell,
    .list-panel-shell,
    .info-panel-shell,
    .cta-panel-shell,
    .catalog-row-shell {
        padding: 20px;
        border-radius: 22px;
    }

    .category-hero-media {
        min-height: 260px;
        border-radius: 18px;
    }

    .metric-grid-shell,
    .palette-stat-grid {
        grid-template-columns: 1fr;
    }

    .catalog-toolbar-shell {
        top: 84px;
        padding: 14px;
        border-radius: 20px;
    }

    .catalog-toolbar-row,
    .catalog-filter-options,
    .catalog-spec-grid-shell,
    .catalog-extra-grid {
        grid-template-columns: 1fr;
    }

    .catalog-row-shell {
        gap: 18px;
    }

    .catalog-thumb-shell {
        min-height: 220px;
    }

    .catalog-badges-shell {
        align-items: stretch;
    }

    .catalog-chip-row-shell {
        width: 100%;
    }

    .catalog-chip-shell {
        justify-content: center;
    }

    .catalog-filter-sheet {
        left: 12px;
        right: 12px;
        width: auto;
        transform: translateY(18px);
    }

    .catalog-filter-overlay.is-open .catalog-filter-sheet {
        transform: translateY(0);
    }
}

/* Light premium catalog palette override */
.palette-page {
    --catalog-bg-0: #fafafa;
    --catalog-bg-1: #f5f6f8;
    --catalog-bg-2: #ffffff;
    --catalog-surface: #ffffff;
    --catalog-surface-2: #f7f8fa;
    --catalog-surface-3: #ffffff;
    --catalog-gold: #ffb526;
    --catalog-gold-strong: #ff9700;
    --catalog-gold-soft: rgba(255, 181, 38, 0.15);
    --catalog-blue-soft: rgba(20, 38, 75, 0.08);
    --catalog-line: rgba(20, 38, 75, 0.12);
    --catalog-line-soft: rgba(20, 38, 75, 0.1);
    --catalog-text: #07101f;
    --catalog-muted: #667085;
    --catalog-shadow: 0 18px 44px rgba(7, 16, 31, 0.08);
    color: #07101f;
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 181, 38, 0.12), transparent 22%),
        linear-gradient(180deg, #fafafa 0%, #f5f6f8 44%, #ffffff 100%);
}

.palette-page::before {
    opacity: 0.24;
    background-image: radial-gradient(rgba(20, 38, 75, 0.12) 1px, transparent 1px);
}

.palette-page::after {
    background: radial-gradient(circle, rgba(255, 181, 38, 0.12), transparent 62%);
}

.palette-page .section-title,
.palette-page p,
.palette-page li,
.metric-value,
.palette-stat-value {
    color: #07101f;
    text-shadow: none;
}

.palette-page .section-intro,
.metric-label,
.palette-stat-label {
    color: #667085;
}

.category-hero-shell,
.list-panel-shell,
.info-panel-shell,
.catalog-row-shell,
.catalog-toolbar-shell,
.catalog-filter-sheet,
.palette-stat-card,
.metric-grid-shell .surface-card {
    color: #07101f;
    border-color: rgba(20, 38, 75, 0.1);
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 181, 38, 0.12), transparent 20%),
        linear-gradient(145deg, #ffffff 0%, #f7f8fa 100%);
    box-shadow: 0 18px 44px rgba(7, 16, 31, 0.08);
}

.category-hero-shell::before {
    background: linear-gradient(90deg, transparent, #ffb526, transparent);
}

.category-hero-media,
.catalog-thumb-shell {
    border-color: rgba(20, 38, 75, 0.1);
    background-color: #eef1f5;
    box-shadow: inset 0 0 0 1px rgba(255, 181, 38, 0.08);
}

.category-hero-media::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(20, 38, 75, 0.2) 100%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 38%);
}

.bullet-list-shell li,
.catalog-spec-item,
.catalog-chip-shell,
.catalog-badge-shell {
    color: #14264b;
    border-color: rgba(20, 38, 75, 0.1);
    background: #ffffff;
}

.cta-panel-shell {
    color: #ffffff;
    background:
        radial-gradient(circle at 86% 18%, rgba(255, 181, 38, 0.2), transparent 24%),
        linear-gradient(135deg, #14264b 0%, #071332 100%);
}

.cta-panel-shell .section-title {
    color: #ffffff;
}

.cta-panel-shell p {
    color: rgba(255, 255, 255, 0.74);
}
