:root {
    --pcl-blue: #003a70;
    --pcl-blue-2: #005dab;
    --pcl-cyan: #00a3e0;
    --pcl-dark: #071522;
    --pcl-ink: #172230;
    --pcl-muted: #64748b;
    --pcl-line: #dbe4ee;
    --pcl-soft: #f4f7fb;
    --pcl-white: #ffffff;
    --pcl-shadow: 0 24px 70px rgba(7, 21, 34, .14);
    --pcl-radius: 2px;
    --pcl-container: min(92vw, 1520px);
    --pcl-section-padding-desktop: 96px;
    --pcl-section-padding-mobile: 56px;
    --pcl-industry-columns: 3;
    --pcl-industry-card-min-height: 455px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--pcl-font-family), Inter, Arial, sans-serif;
    color: var(--pcl-ink);
    background: #fff;
    overflow-x: hidden;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

.pcl-container {
    width: var(--pcl-container);
    margin-inline: auto;
}

.pcl-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pcl-blue-2);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.pcl-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--pcl-cyan);
}

.pcl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: var(--pcl-radius);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.pcl-btn:hover {
    transform: translateY(-2px);
}

.pcl-btn--primary {
    background: var(--pcl-blue-2);
    color: #fff;
}

.pcl-btn--ghost {
    border: 1px solid rgba(255, 255, 255, .72);
    color: #fff;
}

.pcl-btn--light {
    background: #fff;
    color: var(--pcl-blue);
}

.pcl-link {
    color: var(--pcl-blue-2);
    font-weight: 800;
}

/* Header */

.pcl-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--pcl-header-bg);
    box-shadow: var(--pcl-shadow);
    border-radius: var(--pcl-radius);
}

.pcl-site-header.is-static {
    position: relative;
}

.pcl-header--transparent {
    position: absolute;
    inset: 0 0 auto 0;
    background: transparent;
    box-shadow: none;
}

.pcl-header--transparent .pcl-nav__inner,
.pcl-header--transparent .pcl-menu__list > li > a,
.pcl-header--transparent .pcl-logo__text strong,
.pcl-header--transparent .pcl-logo__text small {
    color: #fff;
}

.pcl-header--compact .pcl-nav__inner,
.pcl-header--compact .pcl-menu__list > li > a {
    min-height: 64px;
}

.pcl-topbar {
    background: var(--pcl-dark);
    color: rgba(255, 255, 255, .84);
    font-size: 12px;
}

.pcl-topbar__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pcl-topbar__left,
.pcl-topbar__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pcl-nav__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.pcl-nav__brand {
    flex: 0 0 auto;
}

.pcl-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.custom-logo-link img {
    width: var(--pcl-logo-width);
    max-width: min(var(--pcl-logo-width), 48vw);
    max-height: 72px;
    object-fit: contain;
}

.pcl-logo__mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--pcl-blue), var(--pcl-cyan));
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.pcl-logo__text {
    display: grid;
    gap: 1px;
}

.pcl-logo__text strong {
    color: var(--pcl-header-menu-color);
    font-size: 20px;
    letter-spacing: -.04em;
}

.pcl-logo__text small {
    color: var(--pcl-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pcl-menu {
    margin-left: auto;
}

.pcl-menu__list {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pcl-menu__list > li {
    position: relative;
}

.pcl-menu__list > li > a {
    display: flex;
    align-items: center;
    min-height: 82px;
    padding: 0 13px;
    color: var(--pcl-header-menu-color);
    font-size: 14px;
    font-weight: 800;
}

.pcl-menu__list > li > a:hover {
    color: var(--pcl-blue-2);
}

.pcl-menu__list ul {
    position: absolute;
    left: 0;
    top: 100%;
    width: max-content;
    min-width: 280px;
    max-width: 520px;
    background: #fff;
    box-shadow: var(--pcl-shadow);
    padding: 14px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .18s ease;
}

.pcl-menu__list li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pcl-menu__list ul a {
    display: block;
    padding: 10px 20px;
    color: var(--pcl-ink);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.pcl-menu__list ul a:hover {
    background: var(--pcl-soft);
    color: var(--pcl-blue-2);
}

.pcl-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 17px;
    background: var(--pcl-blue-2);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.pcl-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.pcl-nav-toggle span {
    display: block;
    height: 2px;
    margin: 7px 0;
    background: var(--pcl-dark);
}

/* Hero */

.pcl-hero {
    position: relative;
    min-height: var(--pcl-hero-height);
    isolation: isolate;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: var(--pcl-dark);
    color: #fff;
}

.pcl-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7,21,34,.92) 0%, rgba(7,21,34,.68) 42%, rgba(7,21,34,.10) 100%),
        url("../img/hero.svg") center/cover no-repeat;
}

.pcl-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(7, 21, 34, var(--pcl-hero-overlay));
    pointer-events: none;
}

.pcl-hero__media--left { background-position: left center!important; }
.pcl-hero__media--right { background-position: right center!important; }
.pcl-hero__media--top { background-position: center top!important; }
.pcl-hero__media--bottom { background-position: center bottom!important; }

.pcl-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 160px;
    background: linear-gradient(0deg, rgba(7,21,34,.6), transparent);
    z-index: -1;
}

.pcl-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(260px, 420px);
    align-items: end;
    gap: clamp(30px, 7vw, 120px);
    padding: 120px 0 86px;
}

.pcl-hero__content h1 {
    margin: 24px 0 26px;
    max-width: 830px;
    font-size: clamp(42px, 6vw, var(--pcl-hero-title-size));
    line-height: .95;
    letter-spacing: -.07em;
}

.pcl-hero__content p {
    max-width: var(--pcl-hero-text-width);
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.5;
}

.pcl-hero-buttons--outline .pcl-btn--primary {
    background: transparent;
    border: 1px solid var(--pcl-cyan);
}

.pcl-hero-buttons--square .pcl-btn {
    border-radius: 0;
}

.pcl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.pcl-hero__panel {
    padding: 28px;
    background: rgba(255, 255, 255, .92);
    color: var(--pcl-dark);
    box-shadow: var(--pcl-shadow);
    border-top: 4px solid var(--pcl-cyan);
    border-radius: var(--pcl-radius);
}

.pcl-hero__panel strong {
    display: block;
    margin-bottom: 12px;
    font-size: 25px;
    letter-spacing: -.04em;
}

.pcl-hero__panel span {
    color: var(--pcl-muted);
    line-height: 1.55;
}

.pcl-hero--light {
    background: var(--pcl-soft);
    color: var(--pcl-ink);
}

.pcl-hero--light .pcl-hero__media {
    opacity: .18;
}

.pcl-hero--light .pcl-hero__content p {
    color: var(--pcl-muted);
}

.pcl-hero--light .pcl-btn--ghost {
    border-color: var(--pcl-blue-2);
    color: var(--pcl-blue-2);
}

.pcl-hero--light::after {
    background: linear-gradient(0deg, rgba(244,247,251,.9), transparent);
}

.pcl-hero--split .pcl-hero__media {
    left: 52%;
    opacity: .95;
}

.pcl-hero--split .pcl-hero__media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--pcl-dark), rgba(7,21,34,.20));
}

/* Sections */

.pcl-section {
    padding: var(--pcl-section-padding-desktop) 0;
}

.pcl-section--intro {
    padding-bottom: 70px;
}

.pcl-section--dark {
    background: var(--pcl-dark);
    color: #fff;
}

.pcl-section-bg--white {
    background: #fff;
}

.pcl-section-bg--soft {
    background: var(--pcl-soft);
}

.pcl-section-bg--dark {
    background: var(--pcl-dark);
    color: #fff;
}

.pcl-section--dark .pcl-kicker,
.pcl-section--dark .pcl-section__head p {
    color: rgba(255, 255, 255, .74);
}

.pcl-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 36px;
}

.pcl-section__head h2,
.pcl-split h2,
.pcl-story h2,
.pcl-cta h2 {
    margin: 14px 0 0;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.pcl-section__head p {
    max-width: 640px;
    color: var(--pcl-muted);
    line-height: 1.65;
}

.pcl-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(40px, 7vw, 120px);
    align-items: start;
}

.pcl-split--wide {
    grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
    align-items: center;
}

.pcl-text-lead {
    color: var(--pcl-muted);
    font-size: 18px;
    line-height: 1.7;
}

/* Cards */

.pcl-card-grid {
    display: grid;
    gap: 22px;
}

.pcl-card-grid--industries {
    grid-template-columns: repeat(var(--pcl-industry-columns), minmax(0, 1fr));
}

.pcl-industry-card {
    position: relative;
    min-height: var(--pcl-industry-card-min-height);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--pcl-dark);
    box-shadow: var(--pcl-shadow);
    border-radius: var(--pcl-radius);
}

.pcl-industry-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}

.pcl-industry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7,21,34,.93) 0%, rgba(7,21,34,.42) 52%, rgba(7,21,34,.05) 100%);
}

.pcl-industry-card:hover .pcl-industry-card__image {
    transform: scale(1.06);
}

.pcl-industry-card__body {
    position: relative;
    z-index: 1;
    padding: 30px;
    color: #fff;
}

.pcl-industry-card h3 {
    margin: 0 0 13px;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -.04em;
}

.pcl-industry-card p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.55;
}

.pcl-industry-card a {
    display: inline-flex;
    gap: 8px;
    margin-top: 12px;
    color: #fff;
    font-weight: 900;
}

.pcl-card-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 6px 9px;
    background: var(--pcl-cards-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    border-radius: var(--pcl-radius);
}

.pcl-card-grid--strict .pcl-industry-card,
.pcl-card-grid--compact .pcl-industry-card {
    min-height: auto;
    background: #fff;
    border: 1px solid var(--pcl-line);
    color: var(--pcl-ink);
}

.pcl-card-grid--strict .pcl-industry-card__image,
.pcl-card-grid--compact .pcl-industry-card__image,
.pcl-card-grid--strict .pcl-industry-card::after,
.pcl-card-grid--compact .pcl-industry-card::after {
    display: none;
}

.pcl-card-grid--strict .pcl-industry-card__body,
.pcl-card-grid--compact .pcl-industry-card__body {
    color: var(--pcl-ink);
}

.pcl-card-grid--strict .pcl-industry-card p,
.pcl-card-grid--compact .pcl-industry-card p {
    color: var(--pcl-muted);
}

.pcl-card-grid--strict .pcl-industry-card a,
.pcl-card-grid--compact .pcl-industry-card a {
    color: var(--pcl-blue-2);
}

.pcl-card-grid--strict .pcl-industry-card {
    border-top: 4px solid var(--pcl-cyan);
}

.pcl-card-grid--compact {
    gap: 14px;
}

.pcl-card-grid--compact .pcl-industry-card__body {
    padding: 22px;
}

.pcl-card-grid--compact .pcl-industry-card h3 {
    font-size: 20px;
}

.pcl-tech-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.pcl-tech-row article {
    min-height: 320px;
    padding: 34px;
    border-right: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border-radius: var(--pcl-radius);
}

.pcl-tech-row span {
    color: var(--pcl-cyan);
    font-weight: 900;
}

.pcl-tech-row h3 {
    margin: 70px 0 18px;
    font-size: 26px;
    letter-spacing: -.04em;
}

.pcl-tech-row p {
    color: rgba(255, 255, 255, .73);
    line-height: 1.6;
}

.pcl-technologies--compact .pcl-tech-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pcl-technologies--compact .pcl-tech-row article {
    min-height: 220px;
}

.pcl-technologies--compact .pcl-tech-row h3 {
    margin-top: 36px;
}

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

.pcl-portfolio-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 92px;
    padding: 24px 28px;
    background: var(--pcl-soft);
    border-left: 4px solid transparent;
    border-radius: var(--pcl-radius);
    transition: .2s ease;
}

.pcl-portfolio-list a:hover {
    border-left-color: var(--pcl-cyan);
    background: #fff;
    box-shadow: var(--pcl-shadow);
}

.pcl-portfolio-list strong {
    display: block;
    font-size: 20px;
    letter-spacing: -.035em;
}

.pcl-portfolio-list span {
    color: var(--pcl-muted);
}

/* Story */

.pcl-section--story {
    background: linear-gradient(180deg, #fff, var(--pcl-soft));
}

.pcl-story {
    display: grid;
    grid-template-columns: minmax(340px, .92fr) minmax(0, 1.08fr);
    gap: clamp(40px, 7vw, 110px);
    align-items: center;
}

.pcl-story__visual {
    min-height: 560px;
    background:
        linear-gradient(180deg, rgba(0,93,171,.16), rgba(7,21,34,.20)),
        url("../img/lab.svg") center/cover no-repeat;
    box-shadow: var(--pcl-shadow);
    border-radius: var(--pcl-radius);
}

.pcl-story__content p,
.pcl-story__content li {
    color: var(--pcl-muted);
    font-size: 17px;
    line-height: 1.7;
}

.pcl-story__content ul {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.pcl-story__content li {
    position: relative;
    padding-left: 28px;
    margin: 10px 0;
}

.pcl-story__content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .75em;
    width: 14px;
    height: 2px;
    background: var(--pcl-cyan);
}

/* News */

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

.pcl-news-card {
    background: #fff;
    border: 1px solid var(--pcl-line);
    border-radius: var(--pcl-radius);
    box-shadow: var(--pcl-shadow);
    overflow: hidden;
}

.pcl-news-card a {
    display: block;
    height: 100%;
}

.pcl-news-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--pcl-soft);
}

.pcl-news-card span {
    display: block;
    padding: 24px 26px 0;
    color: var(--pcl-blue-2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.pcl-news-card h3 {
    margin: 12px 26px 12px;
    font-size: 23px;
    line-height: 1.18;
    letter-spacing: -.045em;
}

.pcl-news-card p {
    margin: 0 26px 28px;
    color: var(--pcl-muted);
    line-height: 1.6;
}

.pcl-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin: 34px 0;
}

.pcl-catalog-card {
    background: #fff;
    border: 1px solid var(--pcl-line);
    box-shadow: var(--pcl-shadow);
    border-radius: var(--pcl-radius);
    overflow: hidden;
}

.pcl-catalog-card a {
    display: block;
    height: 100%;
}

.pcl-catalog-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--pcl-soft);
}

.pcl-catalog-card h3 {
    margin: 24px 26px 12px;
    font-size: 23px;
    line-height: 1.18;
    letter-spacing: -.045em;
}

.pcl-catalog-card p {
    margin: 0 26px 28px;
    color: var(--pcl-muted);
    line-height: 1.6;
}

/* CTA & footer */

.pcl-cta {
    padding: clamp(70px, 8vw, 120px) 0;
    background:
        linear-gradient(90deg, rgba(0,58,112,.94), rgba(0,93,171,.85)),
        url("../img/cta.svg") center/cover no-repeat;
    color: #fff;
}

.pcl-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.pcl-cta p {
    max-width: 720px;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.65;
}

.pcl-cta--simple {
    background: var(--pcl-soft);
    color: var(--pcl-ink);
}

.pcl-cta--simple .pcl-kicker,
.pcl-cta--simple p {
    color: var(--pcl-muted);
}

.pcl-cta--simple .pcl-btn--light {
    background: var(--pcl-blue-2);
    color: #fff;
}

.pcl-cta--form .pcl-cta__inner {
    align-items: stretch;
}

.pcl-inquiry-form {
    flex: 0 0 min(470px, 100%);
    display: grid;
    gap: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, .96);
    color: var(--pcl-ink);
    box-shadow: var(--pcl-shadow);
    border-radius: var(--pcl-radius);
}

.pcl-inquiry-form input,
.pcl-inquiry-form textarea {
    width: 100%;
    border: 1px solid var(--pcl-line);
    padding: 13px 14px;
    font: inherit;
    color: var(--pcl-ink);
    background: #fff;
    border-radius: var(--pcl-radius);
}

.pcl-inquiry-form__file {
    display: grid;
    gap: 8px;
    color: var(--pcl-muted);
    font-size: 12px;
    font-weight: 700;
}

.pcl-inquiry-form textarea {
    min-height: 118px;
    resize: vertical;
}

.pcl-inquiry-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pcl-inquiry-form .pcl-btn {
    border: 0;
    cursor: pointer;
}

.pcl-inquiry-form__note,
.pcl-inquiry-form__status {
    margin: 0;
    color: var(--pcl-muted);
    font-size: 12px;
    line-height: 1.5;
}

.pcl-inquiry-form__status.is-success {
    color: #11723b;
}

.pcl-inquiry-form__status.is-error {
    color: #b32d2e;
}

.pcl-spec-table {
    margin-top: 42px;
    border-top: 1px solid var(--pcl-line);
}

.pcl-spec-table h2 {
    margin: 34px 0 18px;
}

.pcl-spec-table div {
    display: grid;
    grid-template-columns: minmax(180px, .42fr) 1fr;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--pcl-line);
}

.pcl-spec-table strong {
    color: var(--pcl-dark);
}

.pcl-spec-table span,
.pcl-catalog-card__meta {
    color: var(--pcl-muted);
}

.pcl-catalog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 26px 12px;
    font-size: 12px;
    font-weight: 800;
}

.pcl-catalog-card__meta span {
    padding: 4px 8px;
    background: var(--pcl-soft);
}

.pcl-footer {
    padding: 70px 0 28px;
    background: var(--pcl-dark);
    color: rgba(255, 255, 255, .78);
}

.pcl-footer__grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(0, .7fr));
    gap: 42px;
}

.pcl-footer .pcl-logo__text strong,
.pcl-footer .pcl-logo__text small {
    color: #fff;
}

.pcl-footer h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pcl-footer p {
    max-width: 410px;
    line-height: 1.7;
}

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

.pcl-footer li {
    margin: 10px 0;
}

.pcl-footer a:hover {
    color: #fff;
}

.pcl-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 58px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
}

/* Pages */

.pcl-page-hero {
    position: relative;
    padding: var(--pcl-page-header-pad, 58px) 0 calc(var(--pcl-page-header-pad, 58px) * .78);
    background:
        linear-gradient(90deg, var(--pcl-page-header-bg, #08213f) 0%, var(--pcl-page-header-bg-2, #0b4f83) 100%),
        url("../img/page-hero.svg") center/cover no-repeat;
    color: var(--pcl-page-header-text, #fff);
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 4px solid var(--pcl-page-header-accent, var(--pcl-cyan));
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.05);
}

.pcl-page-hero--disabled {
    display: none;
}

.pcl-page-hero--no-kicker .pcl-kicker,
.pcl-page-hero--no-description p:not(.pcl-catalog-actions) {
    display: none;
}

.pcl-page-hero .pcl-kicker {
    color: color-mix(in srgb, var(--pcl-page-header-text, #fff) 82%, transparent);
}

.pcl-page-hero h1 {
    max-width: 980px;
    margin: 14px 0 0;
    font-size: clamp(30px, 4.2vw, var(--pcl-page-header-title-size, 46px));
    line-height: 1.08;
    letter-spacing: -.03em;
    color: var(--pcl-page-header-text, #fff);
    text-wrap: balance;
}

.pcl-page-hero p {
    max-width: 760px;
    color: color-mix(in srgb, var(--pcl-page-header-text, #fff) 84%, transparent);
    font-size: 17px;
    line-height: 1.65;
}

@supports not (color: color-mix(in srgb, #fff 80%, transparent)) {
    .pcl-page-hero .pcl-kicker { color: rgba(255,255,255,.82); }
    .pcl-page-hero p { color: rgba(255,255,255,.84); }
}

.pcl-page-content {
    padding: 70px 0;
}

.pcl-content-narrow {
    max-width: 980px;
}

.pcl-content-narrow p,
.pcl-content-narrow li {
    color: var(--pcl-ink);
    font-size: 18px;
    line-height: 1.8;
}

.pcl-content-narrow h2,
.pcl-content-narrow h3 {
    margin-top: 42px;
    letter-spacing: -.04em;
}

.pcl-featured-image {
    margin-bottom: 34px;
}

/* Responsive */

@media (max-width: 1280px) {
    .pcl-nav__inner {
        gap: 18px;
    }

    .pcl-menu__list > li > a {
        padding-inline: 9px;
        font-size: 13px;
    }

    .pcl-nav__cta {
        display: none;
    }
}

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

    body.admin-bar .pcl-site-header {
        top: 0;
    }

    .pcl-nav__inner {
        min-height: 72px;
    }

    .pcl-nav-toggle {
        display: block;
    }

    .pcl-menu {
        position: fixed;
        inset: 72px 0 auto 0;
        display: none;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        background: #fff;
        border-top: 1px solid var(--pcl-line);
        box-shadow: var(--pcl-shadow);
    }

    .pcl-menu-open .pcl-menu {
        display: block;
    }

    .pcl-menu__list {
        display: block;
        width: var(--pcl-container);
        margin: 0 auto;
        padding: 18px 0 28px;
    }

    .pcl-menu__list > li > a {
        min-height: 48px;
        padding: 0;
        font-size: 17px;
    }

    .pcl-menu__list ul {
        position: static;
        width: auto;
        min-width: 0;
        max-width: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 10px 20px;
        background: transparent;
    }

    .pcl-menu__list ul a {
        padding: 8px 0;
        white-space: normal;
    }

    .pcl-hero__inner,
    .pcl-split,
    .pcl-split--wide,
    .pcl-story {
        grid-template-columns: 1fr;
    }

    .pcl-hero__panel {
        max-width: 520px;
    }

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

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

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

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

@media (max-width: 720px) {
    .pcl-section {
        padding-top: var(--pcl-section-padding-mobile);
        padding-bottom: var(--pcl-section-padding-mobile);
    }

    :root {
        --pcl-container: 90vw;
    }

    .pcl-logo__text strong {
        font-size: 17px;
    }

    .pcl-logo__text small {
        display: none;
    }

    .custom-logo-link img {
        width: var(--pcl-logo-width-mobile);
    }

    .pcl-hero {
        min-height: auto;
    }

    .pcl-hero__inner {
        padding: 84px 0 54px;
    }

    .pcl-hero__actions {
        display: grid;
    }

    .pcl-section__head,
    .pcl-cta__inner,
    .pcl-footer__bottom {
        display: block;
    }

    .pcl-section__head .pcl-link {
        display: inline-block;
        margin-top: 20px;
    }

    .pcl-card-grid--industries,
    .pcl-news-grid,
    .pcl-catalog-grid,
    .pcl-tech-row {
        grid-template-columns: 1fr;
    }

    .pcl-industry-card {
        min-height: 390px;
    }

    .pcl-tech-row article {
        min-height: auto;
    }

    .pcl-tech-row h3 {
        margin-top: 36px;
    }

    .pcl-portfolio-list a {
        display: block;
    }

    .pcl-portfolio-list span {
        display: block;
        margin-top: 8px;
    }

    .pcl-story__visual {
        min-height: 360px;
    }

    .pcl-cta .pcl-btn {
        margin-top: 22px;
    }

    .pcl-inquiry-form__row {
        grid-template-columns: 1fr;
    }

    .pcl-spec-table div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .pcl-footer__grid {
        grid-template-columns: 1fr;
    }

    .pcl-footer__bottom a {
        display: inline-block;
        margin-top: 14px;
    }
}

@media (max-width: 420px) {
    .pcl-logo__mark {
        width: 40px;
        height: 40px;
    }

    .pcl-hero__content h1 {
        letter-spacing: -.055em;
    }

    .pcl-page-hero h1 {
        font-size: var(--pcl-page-header-title-size-mobile, 30px);
        letter-spacing: -.025em;
    }

    .pcl-industry-card__body,
    .pcl-tech-row article {
        padding: 24px;
    }
}


/* Engineering Catalog 2.0 */
.pcl-catalog-hero p,
.pcl-catalog-single-hero p {max-width:760px;color:rgba(255,255,255,.78)}
.pcl-catalog-filters{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;align-items:end;margin:0 0 28px;padding:18px;background:#f4f7fb;border:1px solid rgba(7,21,34,.08);border-radius:16px}
.pcl-catalog-filters label{display:grid;gap:6px;font-weight:700;font-size:13px;color:#172230}
.pcl-catalog-filters label span{font-size:12px;color:#5d6b7a}
.pcl-catalog-filters select{width:100%;min-height:42px;border:1px solid rgba(7,21,34,.16);border-radius:10px;background:#fff;padding:0 12px}
.pcl-catalog-filters .pcl-btn{min-height:42px;justify-content:center;text-align:center}
.pcl-catalog-empty{padding:24px;background:#f4f7fb;border-radius:14px}
.pcl-catalog-single__layout{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:40px;align-items:start}
.pcl-catalog-single__main{min-width:0}
.pcl-catalog-single__side{display:grid;gap:18px;position:sticky;top:100px}
.pcl-side-box{background:#fff;border:1px solid rgba(7,21,34,.10);border-radius:18px;padding:22px;box-shadow:0 14px 36px rgba(7,21,34,.07)}
.pcl-side-box h2{font-size:20px;margin:0 0 14px;color:#071522}
.pcl-side-box p{color:#5d6b7a;margin-top:0}
.pcl-catalog-terms{display:grid;gap:10px;font-size:14px;color:#5d6b7a}
.pcl-catalog-terms span{display:block;padding-bottom:10px;border-bottom:1px solid rgba(7,21,34,.08)}
.pcl-catalog-terms span:last-child{border-bottom:0;padding-bottom:0}
.pcl-catalog-actions{margin-top:24px}.pcl-catalog-actions .pcl-btn{display:inline-flex}
.pcl-related-catalog{margin-top:48px}.pcl-related-catalog h2{font-size:28px;margin:0 0 20px;color:#071522}.pcl-catalog-grid--related{grid-template-columns:repeat(3,1fr)}
.pcl-content-body{font-size:17px;line-height:1.75;color:#172230}.pcl-content-body>p:first-child{margin-top:0}
@media(max-width:1180px){.pcl-catalog-filters{grid-template-columns:repeat(2,1fr)}.pcl-catalog-single__layout{grid-template-columns:1fr}.pcl-catalog-single__side{position:static}.pcl-catalog-grid--related{grid-template-columns:repeat(2,1fr)}}
@media(max-width:680px){.pcl-catalog-filters,.pcl-catalog-grid--related{grid-template-columns:1fr}.pcl-catalog-filters{padding:14px}.pcl-side-box{padding:18px}}


/* ProCoatingLab live edit helper mode */
.pcl-live-edit-mode [data-pcl-live-section]{position:relative;outline:2px dashed rgba(0,163,224,.55);outline-offset:-8px}
.pcl-live-edit-button{position:absolute;top:14px;right:14px;z-index:50;display:inline-flex;align-items:center;gap:6px;padding:8px 12px;border-radius:999px;background:#071522;color:#fff!important;text-decoration:none!important;font-size:12px;font-weight:800;letter-spacing:.02em;box-shadow:0 10px 30px rgba(0,0,0,.18)}
.pcl-live-edit-button:hover{transform:translateY(-1px);opacity:.92}
.pcl-hero .pcl-live-edit-button,.pcl-cta .pcl-live-edit-button{background:#fff;color:#071522!important}
@media(max-width:720px){.pcl-live-edit-button{top:8px;right:8px;font-size:11px;padding:7px 10px}}

/* ProCoatingLab visual live editor v1.5.2 */
.pcl-live-edit-mode [data-pcl-live-section]{position:relative;outline:2px dashed rgba(0,163,224,.55);outline-offset:-8px;transition:outline-color .2s ease,min-height .1s ease}
.pcl-live-toolbar{position:absolute;top:14px;right:14px;z-index:90;display:flex;align-items:center;gap:7px;max-width:calc(100% - 28px);padding:7px 8px;border:1px solid rgba(255,255,255,.28);border-radius:999px;background:rgba(7,21,34,.92);color:#fff;box-shadow:0 14px 42px rgba(0,0,0,.22);backdrop-filter:blur(10px);font-size:12px;font-weight:700}
.pcl-live-toolbar strong{padding:0 5px;white-space:nowrap}.pcl-live-toolbar a,.pcl-live-toolbar button{appearance:none;border:0;border-radius:999px;background:#fff;color:#071522!important;text-decoration:none!important;padding:7px 10px;font-size:12px;font-weight:800;cursor:pointer;line-height:1}.pcl-live-toolbar button:hover,.pcl-live-toolbar a:hover{opacity:.88}.pcl-live-resize-handle{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:#00a3e0;color:#fff;cursor:ns-resize;font-size:15px;user-select:none}.pcl-live-resizing{outline-color:#ff8a00!important}.pcl-live-edit-mode [contenteditable="true"]{cursor:text}.pcl-live-edit-mode [data-pcl-edit-key]:hover,.pcl-live-edit-mode [data-pcl-card-field]:hover{outline:2px solid rgba(0,163,224,.45);outline-offset:3px;border-radius:6px}.pcl-live-selected{outline:2px solid #ff8a00!important;outline-offset:4px;border-radius:6px}.pcl-live-panel{position:fixed;right:18px;bottom:18px;z-index:99999;width:min(360px,calc(100vw - 36px));padding:14px;border-radius:18px;background:#fff;color:#071522;box-shadow:0 24px 80px rgba(7,21,34,.28);border:1px solid rgba(7,21,34,.12);font-family:var(--pcl-font-family)}.pcl-live-panel__head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:8px}.pcl-live-panel__head strong{font-size:15px}.pcl-live-panel__head span{font-size:12px;color:#5a6b7d}.pcl-live-panel__head span.is-good{color:#008c46}.pcl-live-panel__head span.is-error{color:#c71f1f}.pcl-live-panel p{margin:0 0 10px;color:#4a5d70;font-size:12px;line-height:1.45}.pcl-live-panel label{display:block;margin:8px 0 5px;font-size:12px;font-weight:800}.pcl-live-panel input{width:100%;box-sizing:border-box;border:1px solid #d8e0e8;border-radius:10px;padding:9px 10px}.pcl-live-panel button{margin-top:8px;width:100%;border:0;border-radius:999px;background:#071522;color:#fff;padding:10px 12px;font-weight:800;cursor:pointer}.pcl-live-panel__admin{display:block;margin-top:9px;text-align:center;font-size:12px;text-decoration:none;color:#005dab!important}.pcl-live-edit-button{display:none!important}@media(max-width:820px){.pcl-live-toolbar{left:8px;right:8px;top:8px;border-radius:16px;flex-wrap:wrap}.pcl-live-panel{right:10px;bottom:10px;width:calc(100vw - 20px)}}

/* ProCoatingLab visual live editor v1.5.3 */
.pcl-live-panel[hidden],.pcl-live-launcher[hidden]{display:none!important}
.pcl-live-panel textarea{width:100%;box-sizing:border-box;border:1px solid #d8e0e8;border-radius:10px;padding:9px 10px;resize:vertical;font-family:inherit;font-size:13px;line-height:1.45}
.pcl-live-panel__head{display:grid!important;grid-template-columns:1fr auto auto auto;align-items:center}
.pcl-live-panel__icon{width:28px!important;height:28px!important;margin:0!important;padding:0!important;border-radius:50%!important;background:#edf3f8!important;color:#071522!important;line-height:1!important}
.pcl-live-panel__row{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:8px}.pcl-live-panel__row button{margin-top:0!important}.pcl-live-panel__row button:first-child{background:#b42318!important}.pcl-live-launcher{position:fixed;right:18px;bottom:18px;z-index:99999;border:0;border-radius:999px;background:#071522;color:#fff;padding:12px 16px;font-weight:800;box-shadow:0 16px 50px rgba(7,21,34,.25);cursor:pointer}.pcl-live-edit-mode [data-pcl-image-key],.pcl-live-edit-mode [data-pcl-card-image-field]{cursor:pointer}.pcl-live-edit-mode [data-pcl-image-key]:hover,.pcl-live-edit-mode [data-pcl-card-image-field]:hover{outline:2px solid rgba(255,138,0,.7);outline-offset:3px}.pcl-live-edit-mode [data-pcl-card-key]{position:relative}.pcl-live-card-tools{position:absolute;top:8px;left:8px;z-index:80;display:flex;gap:4px;opacity:0;transform:translateY(-4px);transition:.18s ease}.pcl-live-edit-mode [data-pcl-card-key]:hover .pcl-live-card-tools,.pcl-live-selected .pcl-live-card-tools{opacity:1;transform:translateY(0)}.pcl-live-card-tools button{width:28px;height:28px;border:0;border-radius:50%;background:#071522;color:#fff;font-weight:900;box-shadow:0 8px 22px rgba(0,0,0,.22);cursor:pointer}.pcl-live-card-tools button:hover{background:#00a3e0}.pcl-live-card-tools [data-card-delete]{background:#b42318}.pcl-live-toolbar [data-pcl-toggle-section]{background:#fff0f0!important;color:#9f1d1d!important}@media(max-width:820px){.pcl-live-panel__head{grid-template-columns:1fr auto auto auto}.pcl-live-panel__row{grid-template-columns:1fr}.pcl-live-launcher{right:10px;bottom:10px}}

.pcl-live-mode-badge{position:fixed;left:18px;bottom:18px;z-index:99998;border-radius:999px;background:#00a3e0;color:#fff;padding:11px 15px;font-size:12px;font-weight:900;box-shadow:0 16px 48px rgba(0,0,0,.22);pointer-events:none}
@media(max-width:820px){.pcl-live-mode-badge{left:10px;bottom:70px}}


/* ProCoatingLab visual live editor v1.5.7 */
.pcl-live-image-rec{border:1px dashed #b8c6d4;background:#f6f9fc;color:#40546a;border-radius:10px;padding:9px 10px;font-size:12px;line-height:1.35;margin:4px 0 8px}.pcl-live-upload{display:grid;grid-template-columns:1fr;gap:7px;margin-top:8px}.pcl-live-upload input[type=file]{font-size:12px;padding:8px;background:#fff}.pcl-live-upload button{background:#005dab!important}.pcl-live-edit-mode [data-pcl-live-section][data-pcl-image-key]{cursor:crosshair}.pcl-live-edit-mode [data-pcl-live-section][data-pcl-image-key]:hover{outline-color:rgba(255,138,0,.72)}.pcl-live-edit-mode [data-pcl-live-section][data-pcl-image-key] .pcl-live-toolbar + *{position:relative;z-index:2}

/* ProCoatingLab visual live editor v1.6.0 */
.pcl-live-panel--wide{width:min(460px,calc(100vw - 36px));max-height:calc(100vh - 36px);overflow:auto}.pcl-live-panel details{border:1px solid #e1e8ef;border-radius:12px;padding:10px;margin:10px 0;background:#fff}.pcl-live-panel summary{font-weight:900;cursor:pointer;color:#071522}.pcl-live-panel select,.pcl-live-panel input[type=number],.pcl-live-panel input[type=color]{width:100%;box-sizing:border-box;border:1px solid #d8e0e8;border-radius:10px;padding:8px 10px;background:#fff}.pcl-live-panel input[type=color]{height:40px;padding:3px}.pcl-live-publish-bar{display:grid;grid-template-columns:1fr 1fr 1fr;gap:7px;margin:8px 0 10px}.pcl-live-publish-bar button{margin-top:0!important;border-radius:10px!important;padding:9px!important;font-size:12px}.pcl-live-publish-bar [data-pcl-live-publish]{background:#008c46!important}.pcl-live-publish-bar [data-pcl-live-discard]{background:#6b7280!important}.pcl-live-publish-bar [data-pcl-live-restore]{background:#b42318!important}.pcl-live-panel__row2{display:grid;grid-template-columns:1fr 1fr;gap:8px}.pcl-live-panel__row3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:7px}.pcl-live-panel__row3 button{margin-top:8px!important;padding:9px!important;border-radius:10px!important;font-size:12px}.pcl-live-card-tools span{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:#edf3f8;color:#071522;font-weight:900;box-shadow:0 8px 22px rgba(0,0,0,.16);cursor:grab}.pcl-live-dragging{opacity:.45!important}.pcl-live-edit-mode .pcl-site-header,.pcl-live-edit-mode .pcl-footer{position:relative;outline:2px dashed rgba(0,163,224,.36);outline-offset:-6px}.pcl-live-device-tablet .pcl-site-main,.pcl-live-device-tablet .pcl-site-header,.pcl-live-device-tablet .pcl-footer{max-width:820px;margin-left:auto!important;margin-right:auto!important;box-shadow:0 0 0 1px rgba(7,21,34,.08)}.pcl-live-device-mobile .pcl-site-main,.pcl-live-device-mobile .pcl-site-header,.pcl-live-device-mobile .pcl-footer{max-width:390px;margin-left:auto!important;margin-right:auto!important;box-shadow:0 0 0 1px rgba(7,21,34,.08)}.pcl-section--custom .pcl-btn{margin-top:22px}.pcl-live-toolbar [data-pcl-section-up],.pcl-live-toolbar [data-pcl-section-down]{min-width:34px;padding-left:9px!important;padding-right:9px!important}.pcl-live-panel [data-pcl-live-exit-mode]{background:#071522!important;margin-top:10px!important}
@media(max-width:820px){.pcl-live-panel--wide{width:calc(100vw - 20px);max-height:75vh}.pcl-live-publish-bar,.pcl-live-panel__row2,.pcl-live-panel__row3{grid-template-columns:1fr}.pcl-live-panel__head{grid-template-columns:1fr auto auto auto!important;overflow:auto}.pcl-live-panel__head [data-pcl-live-device]{display:none!important}}

/* v1.6.1 - visual editor: preflight, history and menu */
.pcl-live-publish-bar{grid-template-columns:1fr 1fr 1fr!important}
.pcl-live-publish-bar button:nth-child(n+4){background:#005dab!important}
.pcl-live-panel details textarea[data-pcl-live-menu]{min-height:116px;font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:12px}
.pcl-live-panel [data-pcl-live-save-menu]{background:#008c46!important}
.pcl-live-panel [data-pcl-live-add-menu-item]{background:#005dab!important}
@media(min-width:821px){.pcl-live-publish-bar{grid-template-columns:1.2fr 1fr 1fr 1fr 1fr!important}}


/* v1.7.0 - internal pages and page block library */
.pcl-page-blocks{background:#fff}.pcl-page-block{position:relative;padding:var(--pcl-section-padding-desktop) 0;background:#fff;color:var(--pcl-ink);background-size:cover;background-position:center}.pcl-page-block--banner,.pcl-page-block--contacts{background-color:var(--pcl-dark);color:#fff}.pcl-page-block__head{max-width:860px}.pcl-page-block__head h2{font-size:clamp(30px,4vw,56px);line-height:1.05;margin:0 0 16px}.pcl-page-block__head p{font-size:18px;line-height:1.65;color:inherit;opacity:.84}.pcl-page-block__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:34px}.pcl-page-mini-card{border:1px solid rgba(7,21,34,.10);background:#fff;border-radius:18px;padding:24px;box-shadow:var(--pcl-shadow)}.pcl-page-block--banner .pcl-page-mini-card,.pcl-page-block--contacts .pcl-page-mini-card{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.18);color:#fff}.pcl-page-mini-card h3{margin:0 0 10px;font-size:19px}.pcl-page-mini-card p{margin:0;color:inherit;opacity:.78;line-height:1.55}.pcl-faq-list{display:grid;gap:12px;margin-top:28px;max-width:960px}.pcl-faq-list details{background:#fff;border:1px solid rgba(7,21,34,.12);border-radius:16px;padding:18px 20px}.pcl-faq-list summary{font-weight:800;cursor:pointer}.pcl-page-gallery{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:28px}.pcl-page-gallery img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:16px}.pcl-page-block__items-source{display:none;width:100%;min-height:140px;margin-top:20px}.pcl-live-edit-mode .pcl-page-block__items-source{display:block}.pcl-live-edit-mode [data-pcl-post-field],.pcl-live-edit-mode [data-pcl-page-block-field]{outline:1px dashed rgba(0,163,224,.35);outline-offset:4px;border-radius:6px}.pcl-live-page-block-tools{position:absolute;top:14px;right:14px;display:flex;gap:5px;z-index:90;opacity:0;transition:.18s ease}.pcl-live-edit-mode [data-pcl-page-block-index]:hover .pcl-live-page-block-tools{opacity:1}.pcl-live-page-block-tools button{width:30px;height:30px;border:0;border-radius:50%;background:#071522;color:#fff;font-weight:900;box-shadow:0 8px 22px rgba(0,0,0,.22);cursor:pointer}.pcl-live-page-block-tools [data-pcl-page-block-delete]{background:#b42318}.pcl-live-page-help{font-size:12px!important;color:#506175!important}.pcl-page-wp-content{min-height:40px}@media(max-width:900px){.pcl-page-block{padding:var(--pcl-section-padding-mobile) 0}.pcl-page-block__grid,.pcl-page-gallery{grid-template-columns:1fr}.pcl-page-block__head p{font-size:16px}}


/* ProCoatingLab v1.7.1 - advanced page block editor */
.pcl-live-panel [data-pcl-page-block-type][readonly]{background:#f4f7fa;color:#4b5f74}
.pcl-live-panel [data-pcl-page-block-save]{background:#008c46!important}
.pcl-live-panel [data-pcl-page-block-delete2]{background:#b42318!important}
.pcl-live-panel [data-pcl-page-duplicate-block],.pcl-live-panel [data-pcl-page-block-media]{background:#005dab!important}
.pcl-live-edit-mode [data-pcl-page-block-index]{cursor:pointer;outline:1px dashed rgba(0,163,224,.28);outline-offset:-8px}
.pcl-live-edit-mode [data-pcl-page-block-index]:hover{outline-color:rgba(0,163,224,.72)}
.pcl-live-edit-mode [data-pcl-page-block-index].pcl-live-selected{outline:3px solid #ff8a00!important;outline-offset:-6px;border-radius:10px}
.pcl-live-page-block-tools [data-pcl-page-block-copy]{background:#005dab}
.pcl-page-block__grid--steps .pcl-page-mini-card strong,.pcl-page-block__grid--metrics .pcl-page-mini-card strong{display:block;font-size:clamp(26px,4vw,44px);line-height:1;color:var(--pcl-blue);margin-bottom:10px}
.pcl-page-quote{max-width:920px;margin:28px 0 0;padding:30px 34px;border-left:5px solid var(--pcl-cyan);background:rgba(255,255,255,.08);border-radius:18px;font-size:clamp(22px,3vw,36px);line-height:1.35;font-weight:700}
.pcl-page-block--quote{background:var(--pcl-dark);color:#fff}.pcl-page-block--quote .pcl-kicker{color:#8ad9ff}.pcl-page-block--quote .pcl-page-block__head p{display:none}


/* v1.8.0 launch-readiness blocks */
.pcl-page-contact-card{background:#fff;border:1px solid rgba(7,21,34,.12);border-radius:18px;padding:24px;box-shadow:0 18px 45px rgba(7,21,34,.08);max-width:860px}
.pcl-page-contact-card p{margin:0 0 10px}.pcl-page-contact-card a{color:var(--pcl-blue,#003a70);font-weight:700}.pcl-page-requisites{white-space:pre-wrap;background:#f4f7fb;border-radius:12px;padding:16px;overflow:auto;font-size:13px;line-height:1.55;color:#172230}.pcl-page-block--contacts .pcl-page-block__head{max-width:820px}.pcl-page-block--contacts .pcl-container{display:grid;gap:20px}.pcl-page-block--stub,.pcl-page-block--banner{position:relative;overflow:hidden}

/* v1.9.0 Responsive Editor */
.pcl-nav__mobile-cta {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: var(--pcl-radius);
    background: var(--pcl-blue-2);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

@media (min-width: 1025px) {
    [data-pcl-section][data-pcl-visible-desktop="0"] { display: none !important; }
}

@media (min-width: 721px) and (max-width: 1024px) {
    [data-pcl-section][data-pcl-visible-tablet="0"] { display: none !important; }
}

@media (max-width: 1024px) {
    .pcl-nav__mobile-cta {
        display: inline-flex;
        margin-left: auto;
    }
    .pcl-nav__cta {
        display: none !important;
    }
}

@media (max-width: 720px) {
    [data-pcl-section][data-pcl-visible-mobile="0"] { display: none !important; }
    .pcl-nav__inner {
        gap: 10px;
    }
    .pcl-nav__mobile-cta {
        max-width: 42vw;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}


/* ProCoatingLab documents and legal block */
.pcl-footer__requisites{font-size:13px;color:rgba(255,255,255,.72)}
.pcl-documents-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin:28px 0}.pcl-document-card{background:#fff;border:1px solid rgba(7,21,34,.12);border-radius:16px;padding:22px;box-shadow:0 10px 30px rgba(7,21,34,.06)}.pcl-document-card h3{margin-top:0}.pcl-document-card__meta{font-size:13px;color:#617083}.pcl-documents-intro{max-width:860px;color:#4b5a6b}@media(max-width:900px){.pcl-documents-list{grid-template-columns:1fr}}


/* ProCoatingLab Theme v2.5.0 - Menu Editor 2.0 / mega-menu-ready */
.pcl-menu__list ul { min-width: var(--pcl-dropdown-width, 360px); border: 1px solid rgba(7,21,34,.08); border-radius: 0 0 18px 18px; overflow: hidden; }
.pcl-menu__list ul li { position: relative; }
.pcl-menu__list ul ul { left: 100%; top: -14px; border-radius: 18px; }
.pcl-menu-mega-ready .pcl-menu__list > li.menu-item-has-children > a::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-left: 8px; margin-top: -4px; opacity: .7; }
.pcl-menu-mega-ready .pcl-menu__list > li.menu-item-has-children:hover > ul { display: grid; gap: 0; }
.pcl-menu-cta-button .pcl-nav__cta { border-radius: 999px; font-weight: 900; box-shadow: 0 10px 24px rgba(0,93,171,.22); }
.pcl-menu__mobile-contacts { display: none; }
@media (max-width: 1024px) {
    .pcl-menu__list ul ul { margin-left: 14px; }
    .pcl-menu-mega-ready .pcl-menu__list > li.menu-item-has-children > a::after { margin-left: auto; }
    .pcl-menu__mobile-contacts { display: grid; gap: 8px; width: var(--pcl-container); margin: -12px auto 24px; padding: 16px; border-radius: 16px; background: var(--pcl-soft); }
    .pcl-menu__mobile-contacts a { color: var(--pcl-ink); font-weight: 800; }
}


/* ProCoatingLab v4.0.0 growth suite */
.pcl-logo--image img{max-height:54px;width:auto;display:block}.pcl-lang-switcher{display:inline-flex;gap:8px;align-items:center;flex-wrap:wrap}.pcl-lang-switcher a{font-size:12px;font-weight:700;text-decoration:none;border:1px solid rgba(17,38,58,.16);border-radius:999px;padding:5px 9px;color:inherit;background:rgba(255,255,255,.72)}.pcl-topbar .pcl-lang-switcher{margin-left:16px}.pcl-footer__bottom .pcl-lang-switcher{margin-left:auto;margin-right:16px}.pcl-contacts-2{display:grid;gap:28px}.pcl-contacts-2__main,.pcl-contacts-2__grid article,.pcl-case-card{background:#fff;border:1px solid rgba(17,38,58,.10);border-radius:24px;padding:28px;box-shadow:0 18px 50px rgba(7,21,34,.08)}.pcl-contacts-2__list{list-style:none;padding:0;margin:18px 0 0;display:grid;gap:8px}.pcl-contacts-2__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.pcl-contacts-2__map iframe{width:100%;min-height:360px;border:0;border-radius:24px}.pcl-case-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.pcl-case-card h2,.pcl-case-card h3{margin-top:0}.pcl-content{max-width:980px}.pcl-content img{border-radius:22px;max-width:100%;height:auto}.pcl-archive-hero:not(.pcl-page-hero){background:linear-gradient(135deg,#f4f8fb,#ffffff)}@media(max-width:900px){.pcl-contacts-2__grid,.pcl-case-grid{grid-template-columns:1fr}.pcl-topbar .pcl-lang-switcher{margin-left:0}.pcl-footer__bottom .pcl-lang-switcher{margin:10px 0}}

/* ProCoatingLab v4.0.2: configurable internal page header */
@media (max-width: 720px) {
    .pcl-page-hero {
        padding: calc(var(--pcl-page-header-pad, 58px) * .72) 0 calc(var(--pcl-page-header-pad, 58px) * .58);
    }
    .pcl-page-hero h1 {
        font-size: var(--pcl-page-header-title-size-mobile, 30px);
        line-height: 1.12;
    }
}

/* ProCoatingLab v4.2.0: multilingual workflow and language switcher */
.pcl-lang-switcher{display:inline-flex;gap:8px;align-items:center;flex-wrap:wrap}
.pcl-lang-switcher a{font-size:12px;font-weight:700;text-decoration:none;border:1px solid rgba(17,38,58,.16);border-radius:999px;padding:5px 10px;color:inherit;background:rgba(255,255,255,.72);transition:background .18s ease,color .18s ease,border-color .18s ease}
.pcl-lang-switcher a:hover,.pcl-lang-switcher a.is-current{background:var(--pcl-cyan,#00a3e0);border-color:var(--pcl-cyan,#00a3e0);color:#fff}
.pcl-lang-switcher--plain a{border:0;background:transparent;padding:0 3px;border-radius:0}
.pcl-lang-switcher--compact a{padding:3px 7px;font-size:11px}
.pcl-topbar .pcl-lang-switcher{margin-left:16px}.pcl-footer__bottom .pcl-lang-switcher{margin-left:auto;margin-right:16px}
@media(max-width:900px){.pcl-topbar .pcl-lang-switcher{margin-left:0}.pcl-footer__bottom .pcl-lang-switcher{margin:10px 0}.pcl-menu .pcl-lang-switcher{width:100%;padding:12px 0}}


/* ProCoatingLab v4.4.0: product catalog */
.pcl-product-catalog__intro{max-width:960px;margin:0 0 22px;color:var(--pcl-muted,#5d6b7a);font-size:17px;line-height:1.7}.pcl-product-filters{display:grid;grid-template-columns:1fr 1fr auto auto;gap:14px;align-items:end;margin:0 0 28px;padding:18px;background:#f4f8fb;border:1px solid rgba(7,21,34,.08);border-radius:22px}.pcl-product-filters label{display:grid;gap:7px;font-weight:800;color:#172230}.pcl-product-filters label span{font-size:12px;text-transform:uppercase;letter-spacing:.08em;color:#6b7a8a}.pcl-product-filters select{min-height:44px;border:1px solid rgba(7,21,34,.16);border-radius:12px;background:#fff;padding:0 12px}.pcl-product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.pcl-product-card{background:#fff;border:1px solid rgba(7,21,34,.10);border-radius:26px;padding:24px;box-shadow:0 18px 46px rgba(7,21,34,.08);display:flex;flex-direction:column;gap:14px}.pcl-product-card__top{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}.pcl-product-card__code{display:inline-flex;background:linear-gradient(135deg,#071522,#0e5692);color:#fff;border-radius:999px;padding:7px 11px;font-weight:800;font-size:12px;line-height:1.25}.pcl-product-card__group{font-size:11px;line-height:1.25;color:#6a7887;text-align:right;max-width:50%}.pcl-product-card h3{margin:0;font-size:20px;line-height:1.2}.pcl-product-card h3 a{color:#071522;text-decoration:none}.pcl-product-card h3 a:hover{color:var(--pcl-cyan,#00a3e0)}.pcl-product-specs{display:grid;grid-template-columns:120px 1fr;gap:8px 12px;margin:0;padding:14px 0;border-top:1px solid rgba(7,21,34,.08);border-bottom:1px solid rgba(7,21,34,.08)}.pcl-product-specs dt{font-weight:800;color:#7a8795;font-size:12px;text-transform:uppercase;letter-spacing:.06em}.pcl-product-specs dd{margin:0;color:#071522;font-weight:650}.pcl-product-card p{margin:0;color:#4c5b6a;line-height:1.65}.pcl-product-card__analogs{background:#f7fafc;border:1px solid rgba(7,21,34,.08);border-radius:16px;padding:12px;color:#405061;font-size:14px}.pcl-product-card__actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:auto}.pcl-product-table-wrap{overflow:auto;border:1px solid rgba(7,21,34,.10);border-radius:22px;background:#fff;box-shadow:0 16px 40px rgba(7,21,34,.06)}.pcl-product-table{width:100%;border-collapse:collapse;min-width:980px}.pcl-product-table th,.pcl-product-table td{padding:14px 16px;border-bottom:1px solid rgba(7,21,34,.08);text-align:left;vertical-align:top}.pcl-product-table th{background:#071522;color:#fff;font-size:12px;text-transform:uppercase;letter-spacing:.08em}.pcl-product-table a{text-decoration:none;color:#071522}.pcl-product-table span{color:#607080;font-size:13px}.pcl-product-single__layout{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:34px;align-items:start}.pcl-product-single__main,.pcl-product-spec-card,.pcl-product-term-card{background:#fff;border:1px solid rgba(7,21,34,.10);border-radius:28px;padding:30px;box-shadow:0 18px 48px rgba(7,21,34,.08)}.pcl-product-single__image{margin-bottom:22px}.pcl-product-single__image img{border-radius:22px;max-width:100%;height:auto}.pcl-product-hero-code{font-weight:800;color:rgba(255,255,255,.9)!important}.pcl-product-spec-card h2,.pcl-product-term-card h3{margin-top:0}.pcl-product-specs--single{grid-template-columns:1fr;border-top:0;padding-top:0}.pcl-product-specs--single dt{margin-top:10px}.pcl-product-single__note{margin-top:22px;background:#f7fafc;border-left:4px solid var(--pcl-cyan,#00a3e0);border-radius:16px;padding:18px;color:#405061}.pcl-product-term-card{margin-top:18px;display:flex;flex-wrap:wrap;gap:8px}.pcl-product-term-card h3{width:100%}.pcl-product-term-card a{display:inline-flex;border:1px solid rgba(7,21,34,.12);border-radius:999px;padding:7px 10px;text-decoration:none;color:#071522;background:#f7fafc;font-weight:700;font-size:13px}@media(max-width:1120px){.pcl-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.pcl-product-single__layout{grid-template-columns:1fr}.pcl-product-filters{grid-template-columns:1fr 1fr}}@media(max-width:760px){.pcl-product-grid,.pcl-product-filters{grid-template-columns:1fr}.pcl-product-card{padding:20px}.pcl-product-specs{grid-template-columns:1fr}.pcl-product-card__top{display:grid}.pcl-product-card__group{text-align:left;max-width:none}.pcl-product-single__main,.pcl-product-spec-card,.pcl-product-term-card{padding:22px;border-radius:22px}}

/* ProCoatingLab v4.5.0: Premium product catalog UI */
.pcl-product-archive--premium{background:linear-gradient(180deg,#f5f8fb 0%,#ffffff 42%,#f7fafc 100%)}
.pcl-product-archive-hero--premium{overflow:hidden}.pcl-product-hero__grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,420px);gap:48px;align-items:center}.pcl-product-hero__panel{position:relative;display:grid;gap:12px;padding:22px;border-radius:28px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.18);box-shadow:0 24px 70px rgba(0,0,0,.20);backdrop-filter:blur(10px)}.pcl-product-hero__panel:before{content:"";position:absolute;inset:12px;border-radius:22px;border:1px solid rgba(255,255,255,.08);pointer-events:none}.pcl-product-hero__panel div{position:relative;padding:16px 18px;border-radius:18px;background:rgba(255,255,255,.10);display:grid;gap:4px}.pcl-product-hero__panel strong{font-size:clamp(24px,3vw,38px);line-height:1;color:#fff}.pcl-product-hero__panel span{font-size:13px;line-height:1.35;color:rgba(255,255,255,.78);font-weight:700}.pcl-product-single-hero__chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}.pcl-product-single-hero__chips span{display:inline-flex;align-items:center;border-radius:999px;padding:8px 12px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);color:#fff;font-weight:800;font-size:13px}.pcl-product-hero__panel--single strong{font-size:clamp(17px,2vw,24px);line-height:1.18}.pcl-product-catalog--pro{position:relative}.pcl-product-catalog__intro--pro{display:grid;grid-template-columns:minmax(0,1fr) minmax(260px,420px);gap:28px;align-items:end;margin:0 0 26px;padding:34px;border:1px solid rgba(7,21,34,.08);border-radius:34px;background:radial-gradient(circle at 0% 0%,rgba(0,163,224,.12),transparent 34%),linear-gradient(135deg,#fff,#f7fafc);box-shadow:0 24px 70px rgba(7,21,34,.08)}.pcl-product-catalog__kicker{display:inline-flex;margin:0 0 12px;color:#006fb0;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}.pcl-product-catalog__intro--pro h2{margin:0 0 12px;color:#071522;font-size:clamp(30px,4vw,48px);line-height:1.05;letter-spacing:-.04em}.pcl-product-catalog__intro--pro p{max-width:820px;margin:0;color:#526274;font-size:18px;line-height:1.7}.pcl-product-catalog__stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.pcl-product-catalog__stats div{padding:18px;border-radius:22px;background:#071522;color:#fff;box-shadow:0 18px 42px rgba(7,21,34,.18)}.pcl-product-catalog__stats strong{display:block;font-size:26px;line-height:1}.pcl-product-catalog__stats span{display:block;margin-top:6px;color:rgba(255,255,255,.72);font-size:12px;line-height:1.35;font-weight:700}.pcl-product-filters--pro{grid-template-columns:minmax(260px,1.4fr) minmax(200px,1fr) minmax(200px,1fr) auto;margin:0 0 16px;padding:22px;border-radius:28px;background:#fff;border:1px solid rgba(7,21,34,.10);box-shadow:0 18px 48px rgba(7,21,34,.08)}.pcl-product-filters__search input,.pcl-product-filters--pro select{width:100%;min-height:50px;border:1px solid rgba(7,21,34,.14);border-radius:16px;background:#f8fbfd;padding:0 15px;color:#071522;font-weight:650}.pcl-product-filters--pro label{display:grid;gap:8px}.pcl-product-filters--pro label span{font-size:11px;color:#667789;letter-spacing:.10em}.pcl-product-filters__actions{display:flex;gap:10px;align-items:end;flex-wrap:wrap}.pcl-product-group-strip{display:flex;flex-wrap:wrap;gap:10px;overflow:visible;padding:2px 0 22px}.pcl-product-group-chip{display:inline-flex;align-items:center;gap:8px;white-space:nowrap;text-decoration:none;color:#172230;background:#fff;border:1px solid rgba(7,21,34,.10);border-radius:999px;padding:9px 12px;font-size:13px;font-weight:800;box-shadow:0 8px 24px rgba(7,21,34,.05)}.pcl-product-group-chip span{display:inline-flex;align-items:center;justify-content:center;min-width:24px;height:24px;border-radius:999px;background:#edf3f7;color:#506070;font-size:11px}.pcl-product-group-chip:hover,.pcl-product-group-chip.is-active{color:#fff;background:#071522;border-color:#071522}.pcl-product-group-chip:hover span,.pcl-product-group-chip.is-active span{background:rgba(255,255,255,.16);color:#fff}.pcl-product-catalog__toolbar{display:flex;justify-content:space-between;align-items:center;gap:16px;margin:4px 0 22px;color:#667789;font-weight:750}.pcl-product-view-switch{display:inline-flex;padding:4px;border:1px solid rgba(7,21,34,.10);background:#fff;border-radius:999px;box-shadow:0 8px 22px rgba(7,21,34,.05)}.pcl-product-view-switch a{display:inline-flex;border-radius:999px;padding:8px 12px;text-decoration:none;color:#516273;font-size:13px;font-weight:850}.pcl-product-view-switch a.is-active{background:#071522;color:#fff}.pcl-product-grid--pro{grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.pcl-product-card--pro{position:relative;overflow:hidden;min-height:100%;padding:0;border:1px solid rgba(7,21,34,.10);border-radius:30px;background:#fff;box-shadow:0 24px 60px rgba(7,21,34,.09);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}.pcl-product-card--pro:hover{transform:translateY(-4px);box-shadow:0 34px 80px rgba(7,21,34,.14);border-color:rgba(0,111,176,.22)}.pcl-product-card__accent{height:7px;background:linear-gradient(90deg,#0a2a50,#00a3e0,#f26a21)}.pcl-product-card__head{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:14px;align-items:start;padding:24px 24px 0}.pcl-product-card__eyebrow{display:block;margin:0 0 8px;color:#0077b6;font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}.pcl-product-card--pro h3{font-size:21px;line-height:1.18;letter-spacing:-.025em}.pcl-product-card__code{max-width:160px;text-align:center;background:linear-gradient(135deg,#071522,#0d4f83);box-shadow:0 12px 28px rgba(7,21,34,.16)}.pcl-product-card__group{margin:12px 24px 0;max-width:none;text-align:left;color:#667789;font-size:13px;font-weight:800}.pcl-product-card__metrics{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin:18px 24px 0}.pcl-product-metric{padding:13px 14px;border-radius:18px;background:#f5f8fb;border:1px solid rgba(7,21,34,.07)}.pcl-product-metric--composition{grid-column:1/-1;background:linear-gradient(135deg,#f8fbfd,#eef6fb)}.pcl-product-metric span{display:block;margin-bottom:5px;color:#7b8794;font-size:10px;font-weight:900;letter-spacing:.10em;text-transform:uppercase}.pcl-product-metric strong{display:block;color:#071522;font-size:14px;line-height:1.35}.pcl-product-card__method{margin:12px 24px 0;padding:14px 16px;border-radius:18px;background:#071522;color:#fff}.pcl-product-card__method span{display:block;margin-bottom:5px;color:rgba(255,255,255,.62);font-size:10px;font-weight:900;letter-spacing:.10em;text-transform:uppercase}.pcl-product-card__method strong{font-size:14px;line-height:1.35}.pcl-product-card__text{padding:0 24px;color:#4b5b6b}.pcl-product-card__analogs{margin:0 24px;background:#fff7f1;border-color:rgba(242,106,33,.18);color:#5a4334}.pcl-product-card__analogs span{display:block;margin-bottom:5px;color:#b64e16;font-size:10px;font-weight:900;letter-spacing:.10em;text-transform:uppercase}.pcl-product-card__analogs strong{font-size:13px;line-height:1.45}.pcl-product-card__actions{padding:0 24px 24px}.pcl-product-table-wrap--pro{border-radius:30px;box-shadow:0 26px 70px rgba(7,21,34,.10)}.pcl-product-table--pro th{position:sticky;top:0;background:linear-gradient(135deg,#071522,#0d4f83);z-index:1}.pcl-product-table--pro td{font-size:14px;line-height:1.55}.pcl-product-table--pro tbody tr:nth-child(even){background:#f8fbfd}.pcl-product-table--pro tbody tr:hover{background:#eef7fc}.pcl-product-single--premium{background:linear-gradient(180deg,#f5f8fb,#fff)}.pcl-product-section-card,.pcl-product-spec-card--premium,.pcl-product-term-card--premium{background:#fff;border:1px solid rgba(7,21,34,.10);border-radius:30px;padding:30px;box-shadow:0 24px 70px rgba(7,21,34,.09)}.pcl-product-section-card+.pcl-product-section-card{margin-top:22px}.pcl-product-section-card__label,.pcl-product-spec-card__kicker{display:inline-flex;margin:0 0 14px;color:#0077b6;font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}.pcl-product-section-card--lead p{font-size:19px;line-height:1.8;color:#314254;margin:0}.pcl-product-section-card--accent{background:linear-gradient(135deg,#fff7f1,#fff);border-color:rgba(242,106,33,.18)}.pcl-product-section-card--accent p{margin:0;color:#5a4334;font-weight:750}.pcl-product-detail-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.pcl-product-detail-grid div{padding:17px;border-radius:20px;background:#f6f9fb;border:1px solid rgba(7,21,34,.07)}.pcl-product-detail-grid span{display:block;margin-bottom:7px;color:#738091;font-size:11px;font-weight:900;letter-spacing:.10em;text-transform:uppercase}.pcl-product-detail-grid strong{display:block;color:#071522;line-height:1.45}.pcl-product-spec-card--premium{position:sticky;top:100px;display:grid;gap:14px;background:radial-gradient(circle at 0 0,rgba(0,163,224,.12),transparent 32%),#fff}.pcl-product-spec-card--premium h2{margin:0;font-size:25px;line-height:1.16;letter-spacing:-.03em}.pcl-product-spec-card--premium p{margin:0;color:#556575;line-height:1.65}.pcl-product-term-card--premium{margin-top:20px}.pcl-product-term-card--premium a{background:#f5f8fb}.pcl-product-single__layout{grid-template-columns:minmax(0,1fr) 380px}.pcl-product-single__main{background:transparent;border:0;box-shadow:none;padding:0}.pcl-catalog-empty{padding:28px;border-radius:24px;background:#fff;border:1px solid rgba(7,21,34,.08);box-shadow:0 18px 46px rgba(7,21,34,.06)}
@media(max-width:1180px){.pcl-product-grid--pro{grid-template-columns:repeat(2,minmax(0,1fr))}.pcl-product-hero__grid,.pcl-product-catalog__intro--pro{grid-template-columns:1fr}.pcl-product-filters--pro{grid-template-columns:1fr 1fr}.pcl-product-filters__search{grid-column:1/-1}.pcl-product-single__layout{grid-template-columns:1fr}.pcl-product-spec-card--premium{position:static}.pcl-product-hero__panel{max-width:none}}
@media(max-width:760px){.pcl-product-catalog__intro--pro{padding:24px;border-radius:24px}.pcl-product-catalog__stats{grid-template-columns:1fr}.pcl-product-filters--pro{grid-template-columns:1fr;padding:18px;border-radius:22px}.pcl-product-filters__actions{display:grid;grid-template-columns:1fr 1fr}.pcl-product-grid--pro{grid-template-columns:1fr}.pcl-product-card__head{grid-template-columns:1fr}.pcl-product-card__code{max-width:none;justify-content:center}.pcl-product-card__metrics{grid-template-columns:1fr}.pcl-product-detail-grid{grid-template-columns:1fr}.pcl-product-catalog__toolbar{display:grid}.pcl-product-view-switch{width:max-content}.pcl-product-hero__panel div{padding:14px}.pcl-product-section-card,.pcl-product-spec-card--premium,.pcl-product-term-card--premium{padding:22px;border-radius:24px}}


/* ProCoatingLab v4.5.4: fixed product catalog filters and wrapped group chips. */
.pcl-product-catalog--pro{max-width:100%!important;overflow-x:clip!important;}
.pcl-product-group-strip,
.pcl-product-group-strip--wrapped{
    display:flex!important;
    flex-wrap:wrap!important;
    align-items:flex-start!important;
    gap:10px!important;
    width:100%!important;
    max-width:100%!important;
    overflow-x:visible!important;
    overflow-y:visible!important;
    white-space:normal!important;
    padding:2px 0 22px!important;
}
.pcl-product-group-chip{
    flex:0 1 auto!important;
    max-width:100%!important;
    white-space:normal!important;
    overflow-wrap:anywhere!important;
    line-height:1.25!important;
}
.pcl-product-filters--pro{max-width:100%!important;}
.pcl-product-filters--pro select,
.pcl-product-filters__search input{min-width:0!important;}

/* ProCoatingLab v4.6.0 - typography and free positioning controls in visual editor */
.pcl-live-panel .pcl-live-page-help{font-size:12px;line-height:1.45;color:#516173;margin:8px 0 0}
.pcl-live-panel label select{width:100%;box-sizing:border-box;border:1px solid #d8e0e8;border-radius:10px;padding:8px 10px;background:#fff}
.pcl-live-panel button[data-pcl-style-move].is-active{background:#ff8a00!important;color:#071522!important}
.pcl-live-free-moving{outline:2px solid #ff8a00!important;outline-offset:5px;cursor:move!important;user-select:none!important}
.pcl-live-edit-mode [data-pcl-style-id],
.pcl-live-edit-mode [data-pcl-post-field],
.pcl-live-edit-mode [data-pcl-page-block-field],
.pcl-live-edit-mode [data-pcl-card-field]{transition:outline-color .16s ease, box-shadow .16s ease}
.pcl-live-edit-mode [data-pcl-style-id]:hover,
.pcl-live-edit-mode [data-pcl-post-field]:hover,
.pcl-live-edit-mode [data-pcl-page-block-field]:hover,
.pcl-live-edit-mode [data-pcl-card-field]:hover{outline:2px solid rgba(255,138,0,.45);outline-offset:4px;border-radius:6px}
