:root {
    --primary-purple: #bd21ef;
    --deep-purple: #711ad6;
    --light-purple: #f7e7ff;
    --violet: #9323e6;
    --dark-bg: #242424;
    --text-main: #17131d;
    --text-muted: #6d6475;
    --line: #ece6f2;
    --white: #ffffff;
    --card-radius: 8px;
    --container-width: 1100px;
    --shadow: 0 18px 45px rgba(73, 20, 120, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text-main);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
h1 { font-size: 74px; font-weight: 900; }
h2 { font-size: 34px; font-weight: 850; }
h3 { font-size: 18px; font-weight: 800; }
p { color: var(--text-muted); }

.container {
    width: min(100% - 40px, var(--container-width));
    margin-inline: auto;
}
.narrow { max-width: 760px; }
.section { padding: 86px 0; }
.section-tight { padding: 34px 0 42px; }
.section-kicker {
    margin-bottom: 8px;
    color: var(--deep-purple);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.section-kicker.center, .center { text-align: center; }
.section-lead { max-width: 620px; margin: 0 auto 28px; }
.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary-purple), var(--deep-purple)); }
.btn-light { color: var(--deep-purple); background: #fff; }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }
.btn-soft { color: var(--deep-purple); background: var(--light-purple); }
.btn-small { min-height: 34px; padding-inline: 16px; font-size: 13px; }
.text-link { color: var(--deep-purple); font-weight: 850; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, #8521dd 0%, #9822e3 48%, #b624ea 100%);
    box-shadow: none;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(37, 9, 64, .26); }
.nav-shell {
    min-height: 66px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}
.site-logo img { width: 150px; height: auto; }
.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.nav-menu a {
    color: rgba(255,255,255,.92);
    font-size: 15px;
    font-weight: 600;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: #fff;
    font-weight: 800;
}
.header-cta {
    min-width: 90px;
    min-height: 28px;
    padding: 0 16px;
    border-radius: 4px;
    color: #fff;
    background: linear-gradient(135deg, #cb29f5, #a520ec);
    font-size: 12px;
    font-weight: 800;
}
.nav-toggle { display: none; }

.hero-section {
    position: relative;
    min-height: calc(100vh - 66px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 48% 72%, rgba(196, 118, 224, .18), transparent 26%),
        linear-gradient(90deg, rgba(70, 42, 127, .36), rgba(137, 83, 171, .28) 44%, rgba(40, 32, 102, .34)),
        linear-gradient(180deg, rgba(119, 45, 179, .18), rgba(76, 44, 124, .36));
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 60%;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    padding: 0 0 42px;
}
.hero-content .eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 18px;
    color: rgba(255,255,255,.94);
    font-size: 16px;
    font-weight: 850;
    line-height: 1;
    text-transform: uppercase;
}
.hero-content .eyebrow::before,
.hero-content .eyebrow::after {
    content: "";
    width: 70px;
    height: 1px;
    background: rgba(255,255,255,.62);
}
.hero-content h1 {
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(78px, 7.3vw, 128px);
    font-weight: 950;
    line-height: .9;
    text-shadow: 0 8px 24px rgba(33, 0, 65, .34);
}
.hero-content h1 span { color: #c024ff; }
.hero-copy {
    max-width: 760px;
    margin: 0 auto 22px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: .01em;
    text-transform: uppercase;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-actions .btn {
    width: 205px;
    min-height: 45px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
}
.hero-actions .btn-primary {
    background: linear-gradient(135deg, #ca20f0, #a117ed);
}
.hero-actions .btn-outline-light {
    border-color: rgba(255,255,255,.78);
    background: rgba(255,255,255,.04);
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 38px;
    max-width: 670px;
    margin: 28px auto 0;
}
.hero-stats span {
    min-height: 34px;
    display: grid;
    grid-template-rows: auto auto;
    place-items: center;
    padding: 4px 12px 5px;
    border: 1px solid rgba(255,255,255,.54);
    border-radius: 5px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.92);
    box-shadow: inset 0 0 18px rgba(255,255,255,.05);
}
.hero-stats strong {
    font-size: 18px;
    font-weight: 900;
    line-height: .95;
}
.hero-stats small {
    margin-top: 2px;
    color: rgba(255,255,255,.76);
    font-size: 7px;
    font-weight: 850;
    line-height: 1;
    text-transform: uppercase;
}

.cert-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 6vw, 70px);
}
.cert-logos img {
    max-width: 112px;
    max-height: 72px;
    object-fit: contain;
    filter: saturate(.95);
}

.purple-section {
    color: #fff;
    background: radial-gradient(circle at 20% 20%, rgba(220, 78, 255, .45), transparent 28%),
        linear-gradient(135deg, #861fe1 0%, #a720eb 46%, #7b17d5 100%);
}
.purple-section h2, .purple-section h3, .purple-section p { color: #fff; }
.product-showcase {
    position: relative;
    overflow: hidden;
    min-height: 900px;
    padding: 108px 0 104px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 22%, rgba(216, 88, 255, .22), transparent 28%),
        linear-gradient(135deg, rgba(117, 30, 210, .28), rgba(173, 34, 232, .18)),
        url("../images/product-showcase-bg.webp") center / cover no-repeat;
}
.product-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(132, 28, 215, .1), rgba(150, 28, 226, .22) 50%, rgba(132, 28, 215, .1));
    pointer-events: none;
}
.product-showcase-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}
.product-showcase .section-kicker {
    margin-bottom: 8px;
    color: rgba(255,255,255,.96);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .01em;
}
.product-showcase h2 {
    margin: 0 auto 12px;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.12;
    text-transform: uppercase;
}
.product-showcase .section-lead {
    margin-bottom: 52px;
    color: rgba(255,255,255,.94);
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: min(100%, 810px);
    margin: 0 auto;
}
.showcase-card {
    overflow: hidden;
    display: block;
    border-radius: 19px;
    background: #9f55d5;
    box-shadow: 0 22px 45px rgba(48, 11, 82, .16);
    transition: transform .2s ease, box-shadow .2s ease;
}
.showcase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 52px rgba(48, 11, 82, .24);
}
.showcase-image {
    min-height: 385px;
    display: grid;
    place-items: center;
    padding: 28px 24px 12px;
    background: rgba(178, 101, 220, .72);
}
.showcase-image img {
    max-height: 330px;
    width: auto;
    object-fit: contain;
}
.showcase-body {
    min-height: 154px;
    padding: 26px 26px 28px;
    text-align: left;
    background: #502071;
}
.showcase-body h3 {
    margin: 6px 0 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.45;
}
.showcase-body .showcase-small {
    margin: 0 0 5px;
    color: rgba(255,255,255,.94);
    font-size: 9px;
    line-height: 1.45;
}
.showcase-body .showcase-small strong {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}
.showcase-body ul {
    margin: 4px 0 0;
    padding-left: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.55;
}
.showcase-body li::marker {
    color: #fff;
}

.solution-section {
    padding: 72px 0 58px;
}
.solution-grid {
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
    align-items: start;
    gap: 42px;
    max-width: 930px;
}
.solution-visual {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}
.solution-visual:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(73, 20, 120, .18);
}
.solution-visual img {
    width: 100%;
}
.solution-copy h2 span { color: var(--primary-purple); }
.solution-copy .section-kicker {
    margin: 0 0 10px;
    color: #1f1b24;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0;
}
.solution-copy h2 {
    max-width: 440px;
    margin-bottom: 10px;
    color: #17151c;
    font-size: 31px;
    font-weight: 900;
    line-height: 1.08;
}
.solution-copy > p {
    max-width: 460px;
    margin-bottom: 20px;
    color: #292431;
    font-size: 15px;
    line-height: 1.58;
}
.number-list {
    display: grid;
    gap: 24px;
    margin-top: 18px;
}
.number-list > div {
    position: relative;
    padding-left: 66px;
}
.number-list strong {
    position: absolute;
    left: 0;
    top: 0;
    width: 46px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-purple));
    font-size: 31px;
    font-weight: 800;
    line-height: 1;
}
.number-list h3 {
    margin: 0 0 12px;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--primary-purple);
    line-height: 1.25;
}
.number-list p {
    max-width: 440px;
    margin-bottom: 12px;
    color: #4b4453;
    font-size: 13px;
    line-height: 1.58;
}
.solution-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 0;
    border: 0;
    text-align: left;
}
.solution-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 31px;
    padding: 0 14px;
    border: 1px solid #9d98a4;
    border-radius: 7px;
    color: #2d2931;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}
.icon-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 930px;
    margin-top: 34px;
}
.icon-card-grid article {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    min-height: 112px;
    padding: 18px;
    border-radius: 20px;
    background: #fbedff;
}
.feature-icon {
    width: 58px;
    height: 58px;
    color: var(--primary-purple);
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.feature-icon circle {
    fill: none;
}
.icon-card-grid h3 {
    margin: 0;
    color: var(--primary-purple);
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.clinicians-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 86px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(105, 25, 190, .82), rgba(133, 27, 211, .8)),
        url("../images/clinicians-bg.webp") center / cover no-repeat;
}
.clinicians-section::before,
.clinicians-section::after {
    content: "";
    position: absolute;
    inset: -18% -8%;
    pointer-events: none;
}
.clinicians-section::before {
    background:
        linear-gradient(12deg, transparent 0 28%, rgba(184, 71, 255, .18) 33%, rgba(120, 202, 255, .2) 38%, transparent 47%),
        linear-gradient(-9deg, transparent 0 55%, rgba(198, 75, 255, .18) 60%, rgba(132, 219, 255, .13) 66%, transparent 73%);
    filter: blur(2px);
}
.clinicians-section::after {
    background:
        radial-gradient(circle at 30% 74%, rgba(220, 58, 255, .22), transparent 26%),
        radial-gradient(circle at 82% 32%, rgba(192, 71, 255, .16), transparent 28%);
}
.clinicians-section h2,
.clinicians-section h3,
.clinicians-section p { color: #fff; }
.clinicians-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 650px) 420px;
    align-items: start;
    gap: 48px;
    max-width: 1120px;
}
.clinicians-copy .section-kicker {
    margin-bottom: 8px;
    color: rgba(255,255,255,.95);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
}
.clinicians-copy h2 {
    max-width: 760px;
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
    white-space: nowrap;
}
.clinicians-lead {
    max-width: 640px;
    margin-bottom: 54px;
    color: rgba(255,255,255,.74) !important;
    font-size: 13px;
    line-height: 1.6;
}
.feature-list {
    display: grid;
    gap: 26px;
    overflow: visible;
}
.feature-list article {
    display: grid;
    grid-template-columns: 98px 1fr;
    gap: 14px;
    align-items: center;
    overflow: visible;
}
.feature-list article > div {
    min-width: 0;
    overflow: visible;
}
.feature-list img {
    width: 98px;
    aspect-ratio: 1.08;
    border-radius: 5px;
    object-fit: cover;
}
.feature-list h3 {
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
}
.feature-list p,
.feature-description {
    display: block !important;
    height: auto;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.48;
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}
.clinicians-product {
    display: block;
    align-self: start;
    margin-top: 164px;
    border-radius: 18px;
    transition: transform .2s ease, filter .2s ease;
}
.clinicians-product:hover {
    transform: translateY(-3px);
    filter: brightness(1.04);
}
.clinicians-product img {
    width: 420px;
    height: 620px;
    max-height: none;
    margin-inline: auto;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(27, 0, 61, .24);
    object-fit: cover;
}

.article-grid, .product-grid, .resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.article-card, .product-card, .resource-card, .content-panel, .contact-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--card-radius);
    background: #fff;
    box-shadow: 0 12px 28px rgba(72, 21, 102, .07);
}
.article-card img {
    width: 100%;
    aspect-ratio: 1.68;
    object-fit: cover;
}
.article-card div { padding: 18px; }
.article-card p:first-child, .product-card span, .resource-card span {
    color: var(--primary-purple);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}
.article-card h3, .article-card h2 {
    min-height: 48px;
    margin-bottom: 12px;
    font-size: 18px;
}
.article-card a { color: var(--primary-purple); font-weight: 850; }

.testimonials-section {
    min-height: 760px;
    padding: 176px 0 158px;
    background:
        radial-gradient(circle at 50% 35%, rgba(211, 54, 255, .34), transparent 36%),
        linear-gradient(135deg, #7b20d5 0%, #8c22db 46%, #9825df 100%);
}
.testimonials-section .container {
    width: min(100% - 40px, 930px);
}
.testimonials-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 66px;
}
.testimonials-heading .section-kicker {
    margin-bottom: 8px;
    color: rgba(255,255,255,.92);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0;
}
.testimonials-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
}
.testimonials-heading span {
    display: block;
    width: 58px;
    height: 4px;
    margin-top: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.testimonial-card {
    display: flex;
    min-height: 382px;
    flex-direction: column;
    padding: 20px 20px 19px;
    border-radius: 13px;
    background: linear-gradient(180deg, #ca27f5 0%, #b827ee 100%);
    box-shadow: 0 20px 44px rgba(74, 0, 109, .24);
    overflow: visible;
}
.testimonial-card img {
    width: 158px;
    aspect-ratio: 1;
    margin: 0 auto 28px;
    border-radius: 32px;
    object-fit: cover;
}
.testimonial-card p {
    height: auto;
    margin-bottom: 24px;
    color: rgba(255,255,255,.9);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.58;
    overflow: visible;
    text-overflow: clip;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}
.testimonial-card h3 {
    margin-top: auto;
    margin-bottom: 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}
.testimonial-card span {
    color: rgba(255,255,255,.82);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
}

.partner-section {
    padding: 118px 0 110px;
    background: #fff;
}
.partner-section .container {
    width: min(100% - 40px, 910px);
}
.partner-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 58px;
}
.partner-heading .section-kicker {
    margin-bottom: 10px;
    color: #2d2a31;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .12em;
}
.partner-heading h2 {
    margin: 0;
    color: #1e1d22;
    font-size: 31px;
    font-weight: 900;
    line-height: 1.08;
    text-align: left;
    white-space: nowrap;
    text-transform: uppercase;
}
.partner-heading span {
    display: block;
    width: 56px;
    height: 4px;
    margin-top: 4px;
    border-radius: 999px;
    background: #111;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin: 0 auto 14px;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(90deg, #8a22d6 0%, #9a24dd 52%, #8322d0 100%);
}
.stats-grid div { padding: 43px 18px 42px; text-align: center; color: #fff; }
.stats-grid strong { display: block; font-size: 37px; font-weight: 900; line-height: .95; }
.stats-grid strong sup { font-size: .55em; line-height: 0; vertical-align: super; }
.stats-grid span { display: block; margin-top: 7px; font-size: 17px; font-weight: 500; line-height: 1.1; opacity: .92; }
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 12px;
}
.advantage-grid article {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f0f0f1;
}
.advantage-grid img {
    width: 100%;
    aspect-ratio: 2.58;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
}
.advantage-grid div { min-height: 78px; padding: 11px 19px 15px; }
.advantage-grid h3 {
    margin-bottom: 9px;
    color: #2a292d;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.05;
    text-transform: uppercase;
}
.advantage-grid p {
    margin-bottom: 0;
    color: #37343b;
    font-size: 11px;
    line-height: 1.55;
}

.manufacturing-section {
    min-height: 760px;
    padding: 176px 0 154px;
    color: #fff;
    background: url("../images/facility-bg.webp") center center / cover no-repeat;
}
.manufacturing-section .section-kicker {
    margin-bottom: 10px;
    color: rgba(255,255,255,.9);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
}
.manufacturing-section h2 {
    margin: 0;
    color: #fff;
    font-size: 33px;
    font-weight: 900;
    line-height: 1.28;
    text-transform: uppercase;
}
.manufacturing-section p { color: #fff; }
.manufacturing-inner {
    width: min(100% - 40px, 910px);
    max-width: 910px;
}
.factory-grid {
    display: grid;
    grid-template-columns: 1.03fr repeat(3, 1fr);
    grid-auto-rows: 164px;
    gap: 5px;
    margin-top: 23px;
}
.factory-grid img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
}
.factory-grid img:first-child { grid-row: span 2; aspect-ratio: auto; height: 100%; }

.global-section {
    min-height: 420px;
    padding: 112px 0 104px;
    background: #fff;
}
.global-section .container {
    width: min(100% - 40px, 860px);
}
.global-grid {
    display: grid;
    grid-template-columns: minmax(0, 390px) 1fr;
    align-items: center;
    gap: 52px;
}
.global-copy .section-kicker {
    margin-bottom: 7px;
    color: #303036;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
}
.global-copy h2 {
    max-width: 360px;
    margin-bottom: 9px;
    color: var(--primary-purple);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.02;
    text-transform: uppercase;
}
.global-copy > p {
    max-width: 360px;
    margin-bottom: 24px;
    color: #343039;
    font-size: 12px;
    line-height: 1.62;
}
.region-list {
    display: flex;
    max-width: 360px;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-top: 0;
}
.region-list span {
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #1f1d22;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
}
.pill-list span {
    padding: 8px 12px;
    border: 1px solid #e3d6ee;
    border-radius: 999px;
    color: var(--deep-purple);
    background: #fbf4ff;
    font-size: 13px;
    font-weight: 750;
}
.map-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 318px;
    min-height: 190px;
    padding: 34px 42px;
    border-radius: 8px;
    background: #7624c5;
    box-shadow: 0 10px 24px rgba(91, 28, 145, .12);
}
.map-card img {
    width: 100%;
    max-width: 230px;
    opacity: .82;
}

.final-cta {
    padding: 45px 0 47px;
    text-align: center;
    color: #fff;
    background: #8d24d6;
}
.final-cta h2, .final-cta p { color: #fff; }
.final-cta h2 {
    margin-bottom: 14px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.08;
}
.final-cta p {
    margin-bottom: 0;
    color: rgba(255,255,255,.92);
    font-size: 13px;
    line-height: 1.45;
    opacity: 1;
}
.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}
.final-cta-actions .btn {
    min-width: 76px;
    min-height: 22px;
    padding: 0 18px;
    border-radius: 3px;
    font-size: 8px;
    font-weight: 850;
    line-height: 1;
    box-shadow: none;
}
.final-cta-actions .btn:hover {
    transform: none;
    box-shadow: none;
}
.final-cta-actions .btn-light {
    color: #fff;
    background: #bd27ee;
}
.final-cta-actions .btn-outline-light {
    color: #fff;
    border-color: rgba(255,255,255,.9);
    background: transparent;
}
.final-cta.compact { padding: 48px 0; }

.site-footer {
    padding: 142px 0 26px;
    color: rgba(255,255,255,.76);
    background: #292929;
}
.site-footer .container {
    width: min(100% - 40px, 760px);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr .7fr .78fr 1fr;
    gap: 48px;
    align-items: start;
}
.footer-logo-img {
    width: 126px;
    height: auto;
}
.footer-brand p {
    max-width: 315px;
    margin: 8px 0 0;
    color: rgba(255,255,255,.92);
    font-size: 11px;
    font-weight: 850;
    line-height: 1.35;
}
.footer-cert-row { display: flex; gap: 16px; align-items: center; margin-top: 22px; }
.footer-cert-row img {
    width: auto;
    height: 23px;
    max-width: 52px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.9);
    opacity: .9;
}
.site-footer h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
    color: rgba(255,255,255,.78);
    font-size: 11px;
    line-height: 1.25;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
    margin-top: 68px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.58); font-size: 11px; }

.inner-page { background: #fff; }
.page-hero {
    padding: 82px 0;
    color: #fff;
    background:
        radial-gradient(circle at 70% 20%, rgba(255,255,255,.18), transparent 26%),
        linear-gradient(135deg, #7422d4, #bd20ee);
}
.page-hero h1 { max-width: 850px; margin-bottom: 14px; color: #fff; font-size: 48px; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.84); }

.listing-wrap { padding: 62px 0 86px; }
.listing-tools {
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(72, 21, 102, .06);
}
.product-filter {
    display: grid;
    grid-template-columns: 1fr 260px auto;
    gap: 14px;
    align-items: end;
}
.product-filter label, .contact-form label {
    display: grid;
    gap: 7px;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 800;
}
input, select, textarea {
    width: 100%;
    border: 1px solid #ded5e7;
    border-radius: 6px;
    padding: 12px 13px;
    color: var(--text-main);
    font: inherit;
    background: #fff;
}
input:focus, select:focus, textarea:focus {
    outline: 2px solid rgba(189,33,239,.2);
    border-color: var(--primary-purple);
}
.product-card-image {
    display: grid;
    place-items: center;
    min-height: 250px;
    background: linear-gradient(145deg, #fbf2ff, #fff);
}
.product-card-image img { max-height: 230px; object-fit: contain; }
.product-card-body, .resource-card { padding: 22px; }
.product-card h3 { margin-bottom: 9px; }
.product-card p { min-height: 68px; font-size: 14px; }
.card-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.product-detail-hero { padding: 72px 0; background: linear-gradient(180deg, #fbf5ff, #fff); }
.detail-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 58px;
}
.detail-image {
    display: grid;
    place-items: center;
    min-height: 420px;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
}
.detail-image img { max-height: 380px; object-fit: contain; }
.breadcrumb { margin-bottom: 16px; color: var(--text-muted); font-size: 13px; }
.breadcrumb a { color: var(--deep-purple); font-weight: 750; }
.detail-grid h1 { color: var(--text-main); font-size: 52px; }
.detail-subtitle { font-size: 18px; }
.product-detail-content { display: grid; gap: 22px; }
.content-panel { padding: 30px; }
.check-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text-muted);
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .4em;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-purple));
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}
.spec-table th { width: 32%; color: var(--deep-purple); }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.faq-mini details, .faq-item {
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
}
summary { cursor: pointer; font-weight: 850; }

.faq-layout { display: grid; gap: 28px; max-width: 860px; }
.faq-group h2 { color: var(--deep-purple); }
.faq-item p { margin: 12px 0 0; }

.faq-hero {
    background: linear-gradient(90deg, #8521dd 0%, #9822e3 48%, #b624ea 100%);
}
.faq-hero h1 {
    margin-bottom: 18px;
    font-size: 56px;
    line-height: 1;
}
.faq-hero p {
    margin-bottom: 22px;
    font-weight: 700;
}
.faq-hero-breadcrumb {
    margin-bottom: 0;
    color: rgba(255,255,255,.9);
}
.faq-hero-breadcrumb a {
    color: #fff;
}
.faq-list-section {
    padding: 92px 0 104px;
    background: #fff;
}
.faq-list-container {
    max-width: 1160px;
}
.faq-list {
    display: grid;
    gap: 26px;
}
.faq-list-card {
    border: 1px solid #d9e1ef;
    border-radius: 14px;
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.faq-list-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37,99,235,.42);
    box-shadow: 0 18px 40px rgba(25, 48, 90, .08);
}
.faq-card-link {
    display: block;
    padding: 32px 34px;
    color: inherit;
}
.faq-card-link h2 {
    margin-bottom: 16px;
    color: #2563eb;
    font-size: 34px;
    line-height: 1.18;
    letter-spacing: 0;
}
.faq-card-link p {
    max-width: 980px;
    margin-bottom: 20px;
    color: #111827;
    font-size: 16px;
    line-height: 1.6;
}
.faq-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-size: 15px;
    font-weight: 800;
}
.faq-empty {
    padding: 34px;
    border: 1px solid #d9e1ef;
    border-radius: 14px;
    text-align: center;
}

.faq-detail-header {
    padding: 36px 0 30px;
    background: #fff;
}
.faq-detail-container {
    max-width: 1040px;
}
.faq-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    color: #38506b;
    font-size: 13px;
}
.faq-detail-breadcrumb a {
    color: #2563eb;
    font-weight: 700;
}
.faq-detail h1 {
    max-width: 980px;
    color: #082746;
    font-size: 52px;
    line-height: 1.18;
    letter-spacing: 0;
}
.faq-detail-body {
    padding: 16px 0 92px;
    background: #fff;
}
.faq-featured-media {
    margin: 0 0 74px;
}
.faq-featured-media img {
    display: block;
    width: 100%;
    max-height: 390px;
    object-fit: cover;
    border-radius: 12px;
}
.faq-content {
    max-width: 960px;
}
.faq-content h2 {
    margin: 42px 0 14px;
    color: #082746;
    font-size: 34px;
    line-height: 1.2;
}
.faq-content h2:first-child {
    margin-top: 0;
}
.faq-content h3 {
    margin: 28px 0 8px;
    color: #111827;
    font-size: 22px;
    line-height: 1.32;
}
.faq-content p {
    margin: 0 0 16px;
    color: #102033;
    font-size: 16px;
    line-height: 1.75;
}
.faq-detail-cta {
    margin-top: 54px;
    padding: 30px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(189,33,239,.1), rgba(116,34,212,.08));
    border: 1px solid rgba(116,34,212,.16);
}
.faq-detail-cta h2 {
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 28px;
}
.faq-detail-cta p {
    max-width: 680px;
    margin-bottom: 18px;
}

.resource-card h2 { font-size: 22px; }
.resource-card p { min-height: 74px; }

.resources-hero {
    background: linear-gradient(90deg, #8521dd 0%, #9822e3 48%, #b624ea 100%);
}
.resources-hero h1 {
    margin-bottom: 18px;
    font-size: 56px;
    line-height: 1;
}
.resources-hero p {
    margin-bottom: 22px;
    font-weight: 700;
}
.resources-hero-breadcrumb {
    margin-bottom: 0;
    color: rgba(255,255,255,.9);
}
.resources-hero-breadcrumb a {
    color: #fff;
}
.resource-list-section {
    padding: 92px 0 104px;
    background: #fff;
}
.resource-list-container {
    max-width: 1160px;
}
.resource-list {
    display: grid;
    gap: 26px;
}
.resource-list-card {
    border: 1px solid #d9e1ef;
    border-radius: 14px;
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.resource-list-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37,99,235,.42);
    box-shadow: 0 18px 40px rgba(25,48,90,.08);
}
.resource-card-link {
    display: block;
    padding: 32px 34px;
    color: inherit;
}
.resource-type {
    display: inline-block;
    margin-bottom: 12px;
    color: #55657a;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.resource-card-link h2 {
    margin-bottom: 16px;
    color: #2563eb;
    font-size: 34px;
    line-height: 1.18;
    letter-spacing: 0;
}
.resource-card-link p {
    max-width: 980px;
    margin-bottom: 20px;
    color: #111827;
    font-size: 16px;
    line-height: 1.6;
}
.resource-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-size: 15px;
    font-weight: 800;
}
.resource-empty {
    padding: 34px;
    border: 1px solid #d9e1ef;
    border-radius: 14px;
    text-align: center;
}

.resource-detail-header {
    padding: 36px 0 26px;
    background: #fff;
}
.resource-detail-container {
    max-width: 1060px;
}
.resource-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #38506b;
    font-size: 13px;
}
.resource-detail-breadcrumb a {
    color: #2563eb;
    font-weight: 700;
}
.resource-detail-type {
    margin-bottom: 10px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.resource-detail h1 {
    max-width: 1040px;
    color: #082746;
    font-size: 48px;
    line-height: 1.18;
    letter-spacing: 0;
}
.resource-detail-body {
    padding: 28px 0 94px;
    background: #fff;
}
.resource-content {
    max-width: 1000px;
    color: #102033;
}
.resource-content h2 {
    margin: 34px 0 14px;
    color: #061f36;
    font-size: 26px;
    line-height: 1.25;
    text-transform: none;
}
.resource-content h2:first-child {
    margin-top: 0;
}
.resource-content h3 {
    margin: 26px 0 10px;
    color: #111827;
    font-size: 20px;
}
.resource-content p,
.resource-content li {
    color: #102033;
    font-size: 16px;
    line-height: 1.75;
}
.resource-content ul,
.resource-content ol {
    margin: 14px 0 24px 22px;
    padding: 0;
}
.resource-content table {
    width: 100%;
    margin: 26px 0;
    border-collapse: collapse;
    border: 1px solid #d8dee8;
    font-size: 15px;
}
.resource-content th,
.resource-content td {
    padding: 15px 16px;
    border: 1px solid #d8dee8;
    text-align: left;
    vertical-align: top;
}
.resource-content th {
    background: #f5f7fa;
    color: #111827;
    font-weight: 850;
}
.resource-content blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid #2563eb;
    background: #f5f8ff;
}
.resource-download-card {
    max-width: 1000px;
    margin-top: 48px;
    padding: 26px 28px;
    border-left: 4px solid #2563eb;
    border-radius: 0 8px 8px 0;
    background: #f4f7f7;
    box-shadow: 0 10px 22px rgba(15, 39, 67, .04);
}
.resource-download-card h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 21px;
}
.resource-download-card p {
    margin: 0 0 18px;
    color: #38475a;
}
.resource-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 5px;
    color: #fff;
    background: #0c4a7f;
    font-size: 14px;
    font-weight: 850;
}
.resource-download-button:hover {
    color: #fff;
    background: #09395f;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 48px;
    align-items: center;
}
.about-grid img { border-radius: 8px; box-shadow: var(--shadow); }
.about-certs h2 { text-align: center; }
.about-manufacturing { padding: 76px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: start;
}
.contact-form {
    display: grid;
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}
.contact-panel { padding: 28px; }
.contact-panel a { color: var(--deep-purple); font-weight: 800; }
.form-notice {
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 800;
}
.form-notice.success { color: #136c39; background: #e9f8ef; }
.form-notice.error { color: #9b1c1c; background: #fff0f0; }

.single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}
.article-content img { border-radius: 8px; margin-bottom: 24px; }
.wp-content h2, .wp-content h3 { margin-top: 28px; }
.wp-content p { font-size: 17px; }
.pagination-wrap { margin-top: 28px; }
.nav-links { display: flex; gap: 10px; }
.nav-links a, .nav-links span {
    padding: 8px 12px;
    border-radius: 5px;
    background: var(--light-purple);
    color: var(--deep-purple);
    font-weight: 800;
}
.empty-state { grid-column: 1 / -1; padding: 34px; border-radius: 8px; background: #fbf4ff; text-align: center; }
