:root {
    --stc-accent: #FFB743;
    --stc-surface: #18404a;
    --stc-glow: #55cdd1;
}

.stc-site-chrome,
.stc-imported-shell {
    position: relative;
}

.stc-shell-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3000000;
    padding: 18px 24px;
    background: linear-gradient(180deg, rgba(12, 22, 28, 0.82), rgba(12, 22, 28, 0.28));
    backdrop-filter: blur(14px);
    transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stc-shell-header__inner {
    width: min(1800px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.stc-shell-header__brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
}

.stc-shell-header__brand img {
    display: block;
    width: auto;
    height: 42px;
}

.stc-shell-header__nav {
    display: block;
}

.stc-shell-header__menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.stc-shell-header__menu a {
    color: #f8f7f6;
    font: 600 14px/1 Montserrat, sans-serif;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.stc-shell-header__menu a:hover,
.stc-shell-header__menu a:focus {
    color: #ffffff;
    opacity: 0.86;
}

.stc-shell-header__menu > li {
    position: relative;
    list-style: none;
}

.stc-shell-header__menu > li.current-menu-item > a,
.stc-shell-header__menu > li.current-menu-ancestor > a {
    color: var(--stc-accent);
}

.stc-shell-header__menu .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 12px 0;
    list-style: none;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(9, 24, 31, 0.14);
}

.stc-shell-header__menu .sub-menu a {
    display: block;
    padding: 8px 18px;
    color: #18404a;
}

.stc-shell-header__menu li:hover > .sub-menu,
.stc-shell-header__menu li:focus-within > .sub-menu {
    display: block;
}

.stc-shell-header__menu-cta {
    margin-left: 8px;
}

.stc-shell-header__menu-cta > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(255, 183, 67, 0.46);
    border-radius: 999px;
    background: rgba(255, 183, 67, 0.14);
    color: #fff4df;
}

.stc-shell-header__menu-cta > a:hover,
.stc-shell-header__menu-cta > a:focus,
.stc-shell-header__menu-cta.current-menu-item > a {
    background: var(--stc-accent);
    border-color: var(--stc-accent);
    color: #13242b;
    opacity: 1;
}

.stc-shell-header__toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.stc-shell-header__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background: currentColor;
}

.stc-shell-footer {
    position: relative;
    padding: 84px 24px 32px;
    background: #2d2e31;
    color: #f6f1e8;
}

.stc-shell-footer__inner {
    width: min(1800px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 36px;
}

.stc-shell-footer__top,
.stc-shell-footer__bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.stc-shell-footer__brand-block {
    display: grid;
    gap: 18px;
    max-width: 680px;
}

.stc-shell-footer__brand {
    display: inline-flex;
    align-items: center;
}

.stc-shell-footer__brand img {
    display: block;
    width: auto;
    height: 44px;
}

.stc-shell-footer__intro,
.stc-shell-footer__body,
.stc-shell-footer__bottom p {
    margin: 0;
    color: rgba(246, 241, 232, 0.78);
    line-height: 1.7;
}

.stc-shell-footer__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.stc-shell-footer__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--stc-accent);
    border-radius: 999px;
    background: var(--stc-accent);
    color: #102028;
    font: 700 12px/1 Montserrat, sans-serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
}

.stc-shell-footer__button--ghost {
    background: transparent;
    color: #f6f1e8;
    border-color: rgba(246, 241, 232, 0.28);
}

.stc-shell-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
    padding: 28px 0;
    border-top: 1px solid rgba(246, 241, 232, 0.1);
    border-bottom: 1px solid rgba(246, 241, 232, 0.1);
}

.stc-shell-footer__column {
    display: grid;
    align-content: start;
    gap: 16px;
}

.stc-shell-footer__eyebrow {
    margin: 0;
    font: 700 12px/1 Montserrat, sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(246, 241, 232, 0.62);
}

.stc-shell-footer__menu,
.stc-shell-footer__links {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.stc-shell-footer__menu a,
.stc-shell-footer__links a {
    color: #f6f1e8;
    text-decoration: none;
}

.stc-shell-footer__menu a:hover,
.stc-shell-footer__menu a:focus,
.stc-shell-footer__links a:hover,
.stc-shell-footer__links a:focus {
    color: var(--stc-accent);
}

.stc-shell-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.stc-shell-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    min-height: 54px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #f6f1e8;
    text-decoration: none;
}

.stc-shell-footer__social:hover,
.stc-shell-footer__social:focus {
    border-color: var(--stc-accent);
    color: var(--stc-accent);
}

.stc-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.stc-social-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.stc-shell-footer__social .stc-social-icon {
    width: 22px;
    height: 22px;
}

body.page-template-page-products-php .stc-shell-header,
body.page-template-page-products-php .stc-shell-footer,
body.page-template-page-get-in-touch-php .stc-shell-header,
body.page-template-page-get-in-touch-php .stc-shell-footer {
    display: none !important;
}

.stc-footer-actions {
    position: fixed !important;
    inset: auto auto 18px 50%;
    left: 50%;
    right: auto;
    bottom: 18px;
    display: block;
    z-index: 3000002;
    padding: 0;
    margin: 0;
    transform: translateX(-50%);
}

.stc-footer-actions__inner {
    width: auto;
    max-width: calc(100vw - 24px);
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
}

.stc-footer-actions .stc-footer-actions__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--global-palette2, #2B6CB0);
    color: var(--global-palette3, #1A202C);
    box-shadow: 0 16px 34px rgba(15, 30, 35, 0.18);
    text-decoration: none;
    transform: none;
}

.stc-footer-actions .stc-footer-actions__button:hover,
.stc-footer-actions .stc-footer-actions__button:focus {
    color: var(--global-palette3, #1A202C);
    background: var(--global-palette2, #2B6CB0);
    transform: translateY(-1px);
}

.stc-footer-actions__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
}

.stc-footer-actions__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.stc-footer-actions__label {
    display: none;
}

.stc-footer-actions .stc-footer-actions__button--back_to_top {
    width: auto;
    min-width: 0;
    gap: 8px;
    padding: 0 16px;
}

.stc-footer-actions .stc-footer-actions__button--back_to_top .stc-footer-actions__label {
    display: inline-block;
    color: inherit;
    font: 700 16px/1 Montserrat, sans-serif;
    letter-spacing: 0;
    text-transform: lowercase;
}

body.page-template-page-product-builder-php .stc-footer-actions {
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}

.stc-imported-shell--home #masthead,
.stc-imported-shell--home #main-header,
.stc-imported-shell--home #mobile-header,
.stc-imported-shell--home #inner-wrap,
.stc-imported-shell--home #colophon {
    position: relative;
}

.stc-imported-shell--home .kb-row-layout-wrap.kb-row-layout-id25_7c4ab2-9c {
    background: #ffffff !important;
    background-image: none !important;
}

.stc-imported-shell--home .kb-row-layout-id25_7c4ab2-9c > .kt-row-layout-overlay {
    opacity: 0 !important;
    background: transparent !important;
}

.stc-imported-shell--home .home-top .kb-blocks-bg-video-container,
.stc-imported-shell--home .home-top .kb-blocks-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.stc-imported-shell--home .home-top .kb-blocks-bg-video {
    object-fit: cover;
    object-position: center center;
    filter: none !important;
    opacity: 1 !important;
    transform: translateZ(0) scale(1.01);
    image-rendering: auto;
}

.stc-imported-shell--home .home-top h1.wp-block-kadence-advancedheading {
    font-family: industry-inc-base, helvetica, arial, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    height: 80px;
    line-height: 80px;
    min-height: 80px;
}

.stc-imported-shell--home .home-top :is(.kt-adv-heading25_946b44-7a, .kt-adv-heading25_258792-9c, .kt-adv-heading25_43009c-77),
.stc-imported-shell--home .home-top .kt-adv-heading25_946b44-7a :is(mark, .kt-typed-text, .typed-cursor),
.stc-imported-shell--home .home-top .kt-adv-heading25_258792-9c mark,
.stc-managed-section :is(h1, h2, h3, h4, h5, h6, p, li, mark, strong, em),
.stc-managed-section :is(.kt-typed-text, .typed-cursor),
.stc-managed-section a:not(.kb-button) {
    color: var(--stc-section-text-color, currentColor) !important;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_c26c44-d3 {
    background: transparent !important;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_c26c44-d3 > .kt-row-layout-overlay {
    opacity: 0 !important;
    background: transparent !important;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_c26c44-d3 > .kt-row-column-wrap {
    max-width: var(--global-content-width, 1800px);
    padding-top: 112px !important;
    padding-right: var(--global-content-edge-padding) !important;
    padding-bottom: 112px !important;
    padding-left: var(--global-content-edge-padding) !important;
}

.stc-imported-shell--flagship-lt .kadence-column1135_c63fd8-38 > .kt-inside-inner-col {
    background-size: cover !important;
    background-position: 0% 100% !important;
    background-repeat: no-repeat !important;
    border-radius: 8px !important;
}

.stc-imported-shell #colophon .kb-btns25_1e80b9-82,
.stc-imported-shell footer .kb-btns25_1e80b9-82 {
    justify-content: center !important;
    align-items: center !important;
}

.stc-imported-shell #colophon .kb-btns25_1e80b9-82 .kb-button,
.stc-imported-shell footer .kb-btns25_1e80b9-82 .kb-button {
    margin-left: auto;
    margin-right: auto;
}

.stc-imported-shell #colophon .footer-social-wrap .footer-social-inner-wrap {
    font-size: 1.45em;
    gap: 0.4em;
}

.stc-imported-shell #colophon .footer-social-wrap .footer-social-inner-wrap .social-button {
    padding: 0.2em;
}

.stc-imported-shell #colophon .footer-social-wrap .footer-social-inner-wrap .footer-social-item,
.stc-imported-shell footer .footer-social-wrap .footer-social-inner-wrap .footer-social-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stc-imported-shell #colophon .footer-social-wrap .footer-social-inner-wrap .footer-social-item .stc-social-icon,
.stc-imported-shell footer .footer-social-wrap .footer-social-inner-wrap .footer-social-item .stc-social-icon {
    width: 1em;
    height: 1em;
}

.stc-imported-shell .kadence-conversion-wrap,
.stc-imported-shell .kadence-block-pro-modal,
.kadence-block-pro-modal.stc-modal-portal {
    display: none !important;
}

.stc-imported-shell .kadence-conversion-wrap.is-open,
.stc-imported-shell .kadence-block-pro-modal.is-open,
.kadence-block-pro-modal.stc-modal-portal.is-open {
    display: block !important;
}

body.stc-popup-open {
    overflow: hidden;
}

.stc-imported-shell .kadence-block-pro-modal,
.kadence-block-pro-modal.stc-modal-portal {
    position: fixed;
    inset: 0;
    z-index: 4000000;
}

.stc-imported-shell .kadence-block-pro-modal .kt-modal-overlay,
.kadence-block-pro-modal.stc-modal-portal .kt-modal-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px clamp(16px, 4vw, 48px);
    background: rgba(9, 16, 22, 0.54);
    overflow-y: auto;
}

.stc-imported-shell .kadence-block-pro-modal .kt-modal-container,
.kadence-block-pro-modal.stc-modal-portal .kt-modal-container {
    position: relative;
    width: min(1170px, calc(100vw - 32px));
    max-height: calc(100vh - 64px);
    min-height: 0;
    margin: auto;
    padding: 4rem;
    background: var(--global-palette7, #EDF2F7);
    border-radius: 4px;
    box-sizing: border-box;
    overflow-y: auto;
}

.stc-imported-shell .kadence-block-pro-modal .kt-modal-content,
.kadence-block-pro-modal.stc-modal-portal .kt-modal-content {
    overflow-x: hidden;
}

.stc-imported-shell .kadence-block-pro-modal .kt-modal-close,
.kadence-block-pro-modal.stc-modal-portal .kt-modal-close,
#kt-target-modal1135_148c38-95 .kt-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--global-palette3, #1A202C);
    color: var(--global-palette7, #EDF2F7);
    z-index: 2;
}

.stc-imported-shell .kadence-block-pro-modal .kt-modal-close svg,
.kadence-block-pro-modal.stc-modal-portal .kt-modal-close svg {
    width: 32px;
    height: 32px;
}

#kt-target-modal1135_148c38-95 .kt-modal-overlay {
    align-items: center;
    justify-content: center;
}

#kt-target-modal1135_148c38-95 .kt-modal-container {
    width: min(1170px, calc(100vw - 32px));
    max-width: 1170px;
    max-height: calc(100vh - 64px);
    min-height: 0;
    padding-top: 4rem;
    padding-right: 4rem;
    padding-bottom: 4rem;
    padding-left: 4rem;
    margin: auto;
    background: var(--global-palette7, #EDF2F7);
    border-radius: 4px;
    overflow-y: auto;
}

@media (max-width: 1024px) {
    .stc-imported-shell .kadence-block-pro-modal .kt-modal-container,
    .kadence-block-pro-modal.stc-modal-portal .kt-modal-container,
    #kt-target-modal1135_148c38-95 .kt-modal-container {
        width: min(920px, calc(100vw - 32px));
        padding: 2rem;
    }
}

.stc-imported-shell--flagship-lt {
    padding-top: 0;
}

.stc-imported-shell [data-section="cart"],
.stc-imported-shell [data-section="mobile_cart"],
.stc-imported-shell .widget_shopping_cart_live_region,
.stc-imported-shell .single_add_to_cart_button,
.stc-imported-shell .add_to_cart_button,
.stc-imported-shell .quantity {
    display: none !important;
}

.stc-imported-shell [data-section*="cart"],
.stc-imported-shell .kadence-header-cart,
.stc-imported-shell .header-cart-wrap,
.stc-imported-shell .header-mobile-cart-wrap,
.stc-imported-shell .header-cart,
.stc-imported-shell .cart-popup {
    display: none !important;
}

.stc-imported-shell .kb-btn3002_be3e0e-3e.kb-button {
    background: var(--stc-accent) !important;
    border-color: var(--stc-accent) !important;
    color: #1a1a1a !important;
}

.stc-imported-shell .kb-btn3002_be3e0e-3e.kb-button:hover,
.stc-imported-shell .kb-btn3002_be3e0e-3e.kb-button:focus {
    background: var(--stc-accent) !important;
    border-color: var(--stc-accent) !important;
    filter: brightness(0.98) saturate(1.05);
}

.stc-footer-map {
    margin-top: 24px;
}

.stc-footer-map iframe {
    display: block;
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 16px;
}

@media (max-width: 767px) {
    .stc-footer-map iframe {
        height: 220px;
    }
}

.stc-managed-section {
    position: relative;
    isolation: isolate;
}

.stc-managed-section :is(h1, h2, h3, h4, h5, h6, p, li, a, span) {
    color: var(--stc-section-text-color, inherit);
}

.stc-managed-section :is(h1, h2, h3, h4) {
    font-size: var(--stc-section-font-size, inherit);
}

.stc-imported-shell .stc-managed-section > .kt-row-layout-overlay,
.stc-imported-shell .kb-row-layout-wrap[class*="hero"] > .kt-row-layout-overlay,
.stc-imported-shell .kb-row-layout-wrap[class*="banner"] > .kt-row-layout-overlay,
.stc-imported-shell .home-top > .kt-row-layout-overlay,
.stc-imported-shell--product-detail .kb-row-layout-id1135_0a7a64-be > .kt-row-layout-overlay {
    opacity: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
}

.stc-managed-section[data-stc-has-custom-image="1"]::after {
    content: none;
}

.stc-managed-section[data-stc-animation="reveal-up"] {
    animation: stcRevealUp 900ms cubic-bezier(.22, 1, .36, 1) both;
}

.stc-managed-section[data-stc-animation="reveal-left"] {
    animation: stcRevealLeft 900ms cubic-bezier(.22, 1, .36, 1) both;
}

.stc-managed-section[data-stc-animation="reveal-right"] {
    animation: stcRevealRight 900ms cubic-bezier(.22, 1, .36, 1) both;
}

.stc-managed-section[data-stc-animation="zoom-in"] {
    animation: stcZoomIn 900ms cubic-bezier(.22, 1, .36, 1) both;
}

.stc-managed-section a:hover,
.stc-managed-section button:hover {
    filter: saturate(1.08) brightness(1.02);
}

.stc-link-disabled,
.stc-link-disabled:hover,
.stc-link-disabled:focus {
    cursor: default !important;
    text-decoration: none !important;
}

.stc-link-disabled[aria-disabled="true"] {
    opacity: 0.75;
}

[data-stc-hotspots="1"] .wp-block-getwid-image-hotspot__dot {
    overflow: visible;
}

.stc-hotspot-label {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    min-width: 160px;
    max-width: 240px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(24, 64, 74, 0.94);
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
    z-index: 20;
}

.wp-block-getwid-image-hotspot__dot.is-active .stc-hotspot-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 767px) {
    .stc-footer-actions {
        position: fixed !important;
        inset: auto auto 10px 50%;
        left: 50%;
        right: auto;
        bottom: 10px;
        padding: 0;
        transform: translateX(-50%);
    }

    .stc-footer-actions__inner {
        width: auto;
        gap: 4px;
    }

    .stc-footer-actions .stc-footer-actions__button {
        width: 42px;
        min-width: 42px;
        height: 42px;
        min-height: 42px;
        padding: 0;
    }

    .stc-footer-actions__icon {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }

    .stc-footer-actions .stc-footer-actions__button--back_to_top {
        width: auto;
        padding: 0 12px;
    }

    .stc-footer-actions .stc-footer-actions__button--back_to_top .stc-footer-actions__label {
        font-size: 14px;
    }

    body.page-template-page-product-builder-php .stc-footer-actions {
        bottom: calc(132px + env(safe-area-inset-bottom, 0px));
    }

    .stc-imported-shell--flagship-lt .kb-row-layout-id1135_c26c44-d3 > .kt-row-column-wrap {
        padding-top: 20px !important;
        padding-right: 16px !important;
        padding-bottom: 20px !important;
        padding-left: 16px !important;
    }

    .stc-imported-shell--home .home-top h1.wp-block-kadence-advancedheading {
        height: auto;
        line-height: 1.1;
        min-height: 0;
    }

    .stc-hotspot-label {
        left: 50%;
        top: auto;
        bottom: calc(100% + 10px);
        transform: translateX(-50%);
        min-width: 140px;
        max-width: 220px;
        border-radius: 16px;
        text-align: center;
    }

    .wp-block-getwid-image-hotspot__dot.is-active .stc-hotspot-label {
        transform: translateX(-50%);
    }
}

.stc-builder-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.stc-builder-modal.is-open {
    display: grid;
    place-items: center;
}

.stc-builder-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 24, 32, 0.72);
}

.stc-builder-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(620px, calc(100vw - 32px));
    padding: 28px;
    border-radius: 24px;
    background: #f8f7f6;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.stc-builder-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(24, 64, 74, 0.08);
    color: var(--stc-surface);
    font-size: 24px;
    line-height: 1;
}

.stc-products-builder {
    display: grid;
    gap: 20px;
}

.stc-product-builder-main {
    padding: 105px 0 120px;
}

.stc-products-builder__shell {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 0;
    background: #f8f7f6;
}

.stc-products-builder__media {
    position: sticky;
    top: 0;
    align-self: start;
    min-height: calc(100vh - 72px);
    overflow: hidden;
}

.stc-products-builder__media-panel {
    display: none;
    min-height: calc(100vh - 72px);
    padding: 132px 48px 40px;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.12) 34%, rgba(0, 0, 0, 0.56)), var(--stc-builder-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #f8f7f6;
}

.stc-products-builder__brand {
    position: absolute;
    top: 28px;
    left: 32px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
}

.stc-products-builder__brand img {
    display: block;
    width: min(220px, 42vw);
    height: auto;
}

.stc-products-builder__media-panel.is-active {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.wapf-tab-nav[data-stc-builder-tabs] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.wapf-tab-nav[data-stc-builder-tabs] .wapf-tab-btn {
    width: auto !important;
    min-width: 180px;
    flex: 1 1 180px;
}

.wapf-tab-nav[data-stc-builder-tabs] .wapf-tab-btn.active {
    box-shadow: inset 0 0 0 2px rgba(24, 64, 74, 0.18);
}

.stc-products-builder__media-kicker {
    margin: 0 0 8px;
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.stc-products-builder__media-title {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 0.92;
    color: inherit;
}

.stc-products-builder__form {
    min-width: 0;
    padding: 26px 30px 48px;
    background: #f8f7f6;
}

.stc-products-builder__form-label {
    margin: 0 0 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(24, 64, 74, 0.82);
}

.stc-products-builder__section {
    display: none;
}

.stc-products-builder__section.is-active {
    display: block;
}

.stc-products-builder__options {
    display: grid;
    gap: 8px;
}

.stc-products-builder__option {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(24, 64, 74, 0.1);
    cursor: pointer;
}

.stc-products-builder__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.stc-products-builder__option-box {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 1px solid rgba(24, 64, 74, 0.28);
    border-radius: 2px;
    background: #ffffff;
}

.stc-products-builder__option input:checked + .stc-products-builder__option-box {
    background: #18404a;
    border-color: #18404a;
    box-shadow: inset 0 0 0 4px #ffffff;
}

.stc-products-builder__option-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.stc-products-builder__option-copy strong {
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

.stc-products-builder__option-copy small {
    font-size: 11px;
    line-height: 1.45;
    color: rgba(24, 64, 74, 0.72);
}

.stc-products-builder__option-price {
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(24, 64, 74, 0.78);
}

.stc-products-builder__empty {
    margin: 0;
    color: rgba(24, 64, 74, 0.7);
}

.stc-products-builder__floating-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 14px 24px;
    background: #18404a;
    color: #f8f7f6;
    box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.18);
}

.stc-products-builder__floating-copy {
    display: grid;
    gap: 4px;
}

.stc-products-builder__floating-copy .stc-products-builder__label {
    margin: 0;
    color: rgba(248, 247, 246, 0.72);
}

.stc-products-builder__floating-copy strong {
    font-size: 28px;
    line-height: 1;
}

.stc-products-builder__intro {
    display: grid;
    gap: 10px;
}

.stc-products-builder__eyebrow,
.stc-about-manufacturing__eyebrow {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--stc-accent);
}

.stc-products-builder__panel {
    display: grid;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(24, 64, 74, 0.1);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(24, 64, 74, 0.08);
}

.stc-products-builder__summary,
.stc-products-builder__footer,
.stc-products-builder__actions {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.stc-products-builder__label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(24, 64, 74, 0.62);
}

.stc-products-builder__table-wrap {
    overflow-x: auto;
}

.stc-products-builder__table {
    width: 100%;
    border-collapse: collapse;
}

.stc-products-builder__table th,
.stc-products-builder__table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(24, 64, 74, 0.1);
    text-align: left;
    vertical-align: top;
}

.stc-builder-option {
    cursor: pointer;
    transition: background 180ms ease;
}

.stc-builder-option:hover {
    background: rgba(85, 205, 209, 0.08);
}

.stc-products-builder__selected ul {
    margin: 0;
    padding-left: 18px;
}

.stc-products-builder__button,
.stc-about-manufacturing__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: var(--stc-surface);
    color: #fff;
    text-decoration: none;
}

.stc-products-builder__button--secondary {
    background: rgba(24, 64, 74, 0.08);
    color: var(--stc-surface);
}

.stc-products-builder__floating-bar .stc-products-builder__button--secondary {
    background: rgba(248, 247, 246, 0.18);
    color: #f8f7f6;
}

.stc-home-featured-products {
    display: grid;
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
    gap: 34px;
    align-items: start;
    width: min(1380px, calc(100% - 56px));
    margin: 0 auto;
    padding: 92px 0 108px;
}

.stc-home-featured-products__intro {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 112px;
}

.stc-home-featured-products__intro h2 {
    margin: 0;
    color: #1a202c;
    font: 700 clamp(2.5rem, 4vw, 4.8rem)/0.92 "Helvetica Neue", Arial, sans-serif;
    text-transform: lowercase;
}

.stc-home-featured-products__intro p {
    margin: 0;
    max-width: 30rem;
    color: rgba(26, 32, 44, 0.78);
    font-size: 16px;
    line-height: 1.72;
}

.stc-home-featured-products__intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.stc-home-featured-products__intro-actions a,
.stc-home-product-card__actions a,
.stc-products-archive-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 2px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font: 700 12px/1 Montserrat, sans-serif;
}

.stc-home-featured-products__intro-actions a:first-child,
.stc-home-product-card__actions a,
.stc-products-archive-button {
    background: #18404a;
    color: #f8f7f6;
}

.stc-home-featured-products__intro-actions a:last-child {
    background: transparent;
    color: #1a202c;
    border: 1px solid rgba(26, 32, 44, 0.16);
}

.stc-home-featured-products__carousel {
    display: grid;
    gap: 18px;
}

.stc-home-featured-products__nav {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.stc-home-featured-products__arrow {
    position: relative;
    width: 58px;
    height: 26px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1a202c;
    cursor: pointer;
}

.stc-home-featured-products__arrow::before,
.stc-home-featured-products__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.stc-home-featured-products__arrow::before {
    left: 0;
    width: 42px;
    height: 2px;
    background: currentColor;
}

.stc-home-featured-products__arrow::after {
    right: 0;
    width: 11px;
    height: 11px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.stc-home-featured-products__arrow--prev::after {
    left: 0;
    right: auto;
    transform: translateY(-50%) rotate(-135deg);
}

.stc-home-featured-products__arrow--prev::before {
    left: 12px;
}

.stc-home-featured-products__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 36vw);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.stc-home-featured-products__track::-webkit-scrollbar {
    display: none;
}

.stc-home-product-card {
    position: relative;
    min-height: 560px;
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 4px;
    background:
        linear-gradient(180deg, rgba(11, 18, 23, 0.04), rgba(11, 18, 23, 0.72)),
        var(--stc-home-product-image) center/cover no-repeat;
    box-shadow: 0 28px 70px rgba(15, 26, 34, 0.14);
}

.stc-home-product-card--coming-soon {
    background:
        linear-gradient(180deg, rgba(11, 18, 23, 0.16), rgba(11, 18, 23, 0.76)),
        var(--stc-home-product-image) center/cover no-repeat,
        linear-gradient(135deg, rgba(24, 64, 74, 0.88), rgba(85, 205, 209, 0.48));
}

.stc-home-product-card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: inherit;
    gap: 10px;
    padding: 28px;
    color: #fff;
}

.stc-home-product-card__eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font: 700 11px/1 Montserrat, sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.stc-home-product-card h3 {
    margin: 0;
    font-size: clamp(2rem, 2.8vw, 3.1rem);
    line-height: 0.94;
}

.stc-home-product-card__price {
    margin: 0;
    font: 500 1rem/1.2 Montserrat, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.94);
}

.stc-home-product-card__description {
    margin: 0;
    max-width: 30rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.62;
}

.stc-home-product-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.stc-home-featured-products__pagination {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24px, 1fr));
    gap: 8px;
}

.stc-home-featured-products__pagination-button {
    height: 3px;
    padding: 0;
    border: 0;
    background: rgba(24, 64, 74, 0.18);
    cursor: pointer;
}

.stc-home-featured-products__pagination-button.is-active {
    background: #18404a;
}

.stc-products-archive-page {
    background: #f8f7f6;
    color: #1a202c;
}

.stc-products-archive-hero {
    position: relative;
    min-height: 52vh;
    background:
        linear-gradient(180deg, rgba(15, 21, 26, 0.24), rgba(15, 21, 26, 0.58)),
        var(--stc-products-hero-image) center 58% / cover no-repeat;
}

.stc-products-archive-hero__inner,
.stc-products-archive-shell {
    width: min(1320px, calc(100% - 56px));
    margin: 0 auto;
}

.stc-products-archive-hero__inner {
    display: grid;
    align-content: end;
    gap: 18px;
    min-height: inherit;
    padding: 156px 0 54px;
    color: #ffffff;
}

.stc-products-archive-hero__eyebrow,
.stc-product-inquiry__eyebrow {
    margin: 0;
    font: 700 12px/1 Montserrat, sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.stc-products-archive-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.stc-products-archive-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.stc-products-archive-hero__actions .stc-products-archive-button--ghost {
    background: rgba(248, 247, 246, 0.14);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.stc-products-archive-shell {
    padding: 34px 0 88px;
}

.stc-products-archive-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 0 0 24px;
}

.stc-products-archive-summary p {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.5;
}

.stc-products-archive-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 22px;
}

.stc-products-archive-card {
    display: grid;
    gap: 14px;
}

.stc-products-archive-card__media {
    min-height: 410px;
    border: 0;
    border-radius: 4px;
    background: var(--stc-product-card-image) center/cover no-repeat;
    cursor: pointer;
}

.stc-products-archive-card__body {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.stc-products-archive-card__cta {
    padding: 0;
    border: 0;
    background: transparent;
    color: #1a202c;
    font: 700 12px/1 Montserrat, sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
}

.stc-products-archive-card__body h2 {
    margin: 0;
    font-size: clamp(2rem, 2.6vw, 2.9rem);
    line-height: 0.95;
}

.stc-products-archive-card__price {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(26, 32, 44, 0.72);
}

.stc-products-archive-empty {
    padding: 24px 0 0;
}

.stc-product-inquiry {
    position: fixed;
    inset: 0;
    z-index: 3000001;
    display: none;
}

.stc-product-inquiry.is-open {
    display: grid;
    place-items: center;
}

.stc-product-inquiry__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 24, 32, 0.68);
}

.stc-product-inquiry__dialog {
    position: relative;
    z-index: 1;
    width: min(640px, calc(100vw - 32px));
    padding: 30px;
    border-radius: 8px;
    background: #f8f7f6;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.stc-product-inquiry__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #18404a;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.stc-product-inquiry__dialog h2,
.stc-product-inquiry__price,
.stc-product-inquiry__intro {
    margin: 0;
}

.stc-product-inquiry__dialog h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.94;
}

.stc-product-inquiry__price {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(24, 64, 74, 0.72);
}

.stc-product-inquiry__intro {
    margin-top: 10px;
    color: rgba(26, 32, 44, 0.76);
    line-height: 1.65;
}

.stc-product-inquiry__form {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.stc-product-inquiry__form label {
    display: grid;
    gap: 8px;
}

.stc-product-inquiry__form input,
.stc-product-inquiry__form textarea {
    width: 100%;
    border: 1px solid rgba(24, 64, 74, 0.18);
    border-radius: 4px;
    padding: 14px 16px;
    background: #ffffff;
}

.stc-product-inquiry__form textarea {
    min-height: 110px;
    resize: vertical;
}

.stc-product-inquiry__actions {
    display: flex;
    justify-content: flex-start;
}

.stc-product-inquiry__feedback {
    margin: 0;
    min-height: 24px;
    font-size: 14px;
}

.stc-product-inquiry__feedback.is-success {
    color: #13612e;
}

.stc-product-inquiry__feedback.is-error {
    color: #b82105;
}

.stc-imported-shell .stc-community-popup-host {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: auto;
    top: auto;
    z-index: 2000000;
    width: min(780px, calc(100vw - 32px));
    padding: 0;
    background: transparent;
}

.stc-imported-shell .stc-community-popup-host.is-open {
    display: block !important;
}

.stc-imported-shell .stc-community-popup-host .kadence-conversion {
    position: relative;
    width: auto;
    max-width: min(780px, calc(100vw - 32px)) !important;
    margin: 0 !important;
    border-radius: 26px;
    background: #f8f7f4 !important;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28) !important;
    transform: translateY(24px);
    opacity: 0;
    transition: transform 260ms ease, opacity 260ms ease;
    overflow: hidden;
}

.stc-imported-shell .stc-community-popup-host.is-open .kadence-conversion {
    transform: translateY(0);
    opacity: 1;
}

.stc-imported-shell .stc-community-popup-host .kadence-conversion-inner {
    padding: 0 !important;
}

.stc-imported-shell .stc-community-popup-host .kadence-conversions-close {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
    padding: 10px 14px;
    border: 0;
    border-radius: 999px;
    background: rgba(24, 64, 74, 0.92);
    color: #f8f7f4;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stc-community-popup__eyebrow {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(24, 64, 74, 0.72);
}

.stc-community-popup__intro {
    margin: -4px 0 4px;
    max-width: 28rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(24, 64, 74, 0.78);
}

.stc-community-popup .kt-inside-inner-col > .stc-community-popup__eyebrow:first-child {
    margin-bottom: -10px;
}

.stc-community-popup .stc-community-popup-image > .kt-inside-inner-col {
    min-height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.stc-community-popup-form {
    gap: 0;
}

.stc-community-popup .kt-row-column-wrap {
    grid-template-columns: minmax(250px, 0.74fr) minmax(0, 1fr);
}

.stc-community-popup .kadence-column3021_50602e-bc > .kt-inside-inner-col {
    display: grid;
    gap: 18px;
    padding: 34px 34px 34px 16px;
}

.stc-community-popup .kadence-column3021_c542b0-78 > .kt-inside-inner-col {
    min-height: 100%;
}

.stc-community-popup .kb-row-layout-id2979_19ab15-f4 > .kt-row-column-wrap {
    column-gap: 12px;
    row-gap: 10px;
}

.stc-community-popup .kb-adv-form-label {
    color: rgba(24, 64, 74, 0.78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stc-community-popup .kb-field,
.stc-community-popup select,
.stc-community-popup textarea {
    min-height: 48px;
    border: 1px solid rgba(24, 64, 74, 0.12);
    border-radius: 14px;
    background: #fff;
    color: #173842;
    box-shadow: none;
}

.stc-community-popup textarea {
    min-height: 94px;
    resize: vertical;
}

.stc-community-popup .kb-submit-field {
    margin-top: 4px;
}

.stc-community-popup .kb-adv-form-submit-button {
    min-height: 52px;
    border-radius: 999px !important;
    background: #173842 !important;
    color: #fff !important;
}

.stc-community-popup-form__feedback {
    margin: 8px 1rem 0;
    min-height: 20px;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(24, 64, 74, 0.72);
}

.stc-community-popup-form .kb-btn67d8cd-7a[disabled] {
    opacity: 0.72;
    cursor: wait;
}

.stc-community-popup-form__feedback.is-success {
    color: #13612e;
}

.stc-community-popup-form__feedback.is-error {
    color: #b82105;
}

.stc-builder-form {
    display: grid;
    gap: 14px;
}

.stc-builder-form label {
    display: grid;
    gap: 8px;
}

.stc-builder-form input,
.stc-builder-form textarea {
    width: 100%;
    border: 1px solid rgba(24, 64, 74, 0.18);
    border-radius: 14px;
    padding: 12px 14px;
}

.stc-builder-form__feedback {
    margin: 0;
    min-height: 24px;
}

.stc-about-manufacturing {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
    align-items: stretch;
    padding: 20px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(24, 64, 74, 0.08), rgba(85, 205, 209, 0.16));
}

.stc-about-manufacturing__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 20px;
}

.stc-about-manufacturing__content {
    display: grid;
    gap: 16px;
    align-content: center;
}

.stc-about-inline-image {
    margin: 0;
    min-height: 320px;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: #d9e4e6;
}

.stc-about-inline-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

@media all and (min-width: 1024px) {
    .header-menu-container ul.menu > li.stc-products-menu-trigger {
        position: static;
    }

    .header-menu-container ul.menu > li.stc-products-menu-trigger > ul.sub-menu {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
        width: min(1600px, calc(100vw - 64px)) !important;
        min-width: min(1600px, calc(100vw - 64px)) !important;
        max-width: min(1600px, calc(100vw - 64px)) !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    .header-menu-container ul.menu > li.stc-products-menu-trigger > ul.sub-menu > li.menu-item {
        width: 100% !important;
        max-width: none !important;
        border: 0 !important;
    }

    .header-menu-container ul.menu > li.stc-products-menu-trigger > ul.sub-menu > li.menu-item > a {
        width: auto !important;
        padding: 0 !important;
    }

    .header-menu-container ul.menu > li.stc-products-menu-trigger #product-menu,
    .header-menu-container ul.menu > li.stc-products-menu-trigger #product-menu .kt-row-column-wrap {
        width: 100% !important;
        max-width: none !important;
    }
}

.stc-about-manufacturing__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.stc-about-manufacturing__stat {
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
}

.stc-about-manufacturing__stat strong {
    font-size: 20px;
    color: var(--stc-surface);
}

.stc-flagship-explorer .stc-explorer-slides {
    margin: 0;
    padding: 0;
}

.stc-flagship-explorer .stc-explorer-slide {
    display: none;
}

.stc-flagship-explorer .stc-explorer-slide.is-active {
    display: block;
    animation: stcZoomIn 220ms ease;
}

.stc-flagship-explorer .stc-explorer-stage,
.stc-flagship-explorer .stc-explorer-image-wrap {
    position: relative;
}

.stc-flagship-explorer .stc-explorer-stage {
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.stc-flagship-explorer .stc-explorer-stage.is-dragging {
    cursor: grabbing;
}

.stc-flagship-explorer .stc-explorer-image-wrap {
    background-image: var(--stc-explorer-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stc-flagship-explorer .stc-explorer-stage,
.stc-flagship-explorer .stc-explorer-image-wrap,
.stc-flagship-explorer .stc-explorer-slide {
    overflow: visible;
}

.stc-flagship-explorer .stc-explorer-image {
    display: block;
    width: 100%;
    height: auto;
}

.stc-flagship-explorer .stc-explorer-image.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.stc-flagship-explorer .stc-explorer-dot {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    padding: 0 !important;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.66) !important;
    opacity: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    appearance: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
    z-index: 3;
}

.stc-flagship-explorer .stc-explorer-dot:hover,
.stc-flagship-explorer .stc-explorer-dot.is-open {
    transform: translate(-50%, -50%) scale(1.04);
    background-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.stc-flagship-explorer .stc-explorer-dot__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #173842;
    font: 500 30px/1 Arial, sans-serif;
}

.stc-flagship-explorer .stc-explorer-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translate(-50%, 8px);
    min-width: max-content;
    max-width: 240px;
    padding: 8px 12px;
    border-radius: 4px;
    background: #ffffff;
    color: #1a202c;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    z-index: 4;
}

.stc-flagship-explorer .stc-explorer-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border-width: 7px 6px 0;
    border-style: solid;
    border-color: #ffffff transparent transparent;
}

.stc-flagship-explorer .stc-explorer-dot.is-open .stc-explorer-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.stc-flagship-explorer .stc-explorer-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.stc-flagship-explorer .stc-explorer-arrow {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
}

.stc-flagship-explorer .stc-explorer-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.stc-flagship-explorer .stc-explorer-arrow--prev svg {
    transform: rotate(180deg);
}

.stc-flagship-explorer .stc-explorer-arrow:hover {
    opacity: 0.82;
}

.stc-flagship-explorer .kt-adv-heading1135_a30a28-0f {
    max-width: 34rem;
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.78);
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .splide__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .splide__slide {
    display: none;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .splide__slide.is-active,
.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .splide__slide.is-visible {
    display: block;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .splide__slide--clone {
    display: none !important;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .wp-block-getwid-image-hotspot,
.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .wp-block-getwid-image-hotspot__wrapper {
    position: relative;
    overflow: visible;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .wp-block-getwid-image-hotspot__image {
    display: block;
    width: 100%;
    height: auto;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .wp-block-getwid-image-hotspot__dot {
    position: absolute !important;
    transform: translate(-50%, -50%);
    width: 42px !important;
    height: 42px !important;
    min-width: 42px;
    min-height: 42px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.66) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    overflow: visible !important;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .wp-block-getwid-image-hotspot__dot-content {
    color: #173842 !important;
    font: 500 30px/1 Arial, sans-serif !important;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .wp-block-getwid-image-hotspot__dot.is-open .stc-explorer-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .splide__arrows {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .splide__arrow {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .splide__arrow svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .splide__arrow--prev svg {
    transform: rotate(180deg);
}

.product-page-slider .splide__list {
    transition: transform 520ms cubic-bezier(.22, 1, .36, 1);
}

.product-page-slider .splide__slide {
    opacity: 0.34;
    transition: opacity 360ms ease, transform 360ms ease;
}

.product-page-slider .splide__slide.is-active,
.product-page-slider .splide__slide.is-visible {
    opacity: 1;
}

.stc-overview-gallery--managed .splide__track {
    overflow: hidden;
}

.stc-overview-gallery--managed .splide__list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    will-change: transform;
    transition: transform 520ms cubic-bezier(.22, 1, .36, 1);
}

.stc-overview-gallery--managed .splide__slide {
    flex: 0 0 100%;
}

.stc-overview-gallery--managed .splide__arrows {
    position: relative;
    z-index: 3;
}

.stc-overview-gallery--managed .splide__arrow {
    cursor: pointer;
    pointer-events: auto;
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_70303d-0e .kt-adv-heading1135_a30a28-0f {
    max-width: 34rem;
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.78);
}

.stc-imported-shell--flagship-lt .kb-row-layout-id1135_a315d3-20 h2,
.stc-imported-shell--flagship-lt .kb-row-layout-id1135_a315d3-20 h3 {
    font-family: industry-inc-base, helvetica, arial, sans-serif;
    font-size: 47.16px;
    font-style: normal;
    font-weight: 700;
    height: 42.4375px;
    line-height: 42.4375px;
    min-height: 42.4375px;
}

@media (max-width: 767px) {
    .stc-imported-shell--flagship-lt .kb-row-layout-id1135_a315d3-20 h2,
    .stc-imported-shell--flagship-lt .kb-row-layout-id1135_a315d3-20 h3 {
        height: auto;
    }
}

.stc-imported-shell--flagship-lt .kt-adv-heading1135_718665-f7 {
    display: inline-block;
    padding-left: 18px;
    border-left: 1px solid rgba(24, 64, 74, 0.52);
}

.stc-imported-shell .stc-compare-slider {
    position: relative;
    overflow: hidden;
    user-select: none;
    touch-action: none;
    min-height: clamp(360px, 54vw, 760px);
    border-radius: 0;
    background: #d8e1e4;
}

.stc-imported-shell .stc-compare-slider[data-stc-compare-orientation="vertical"] {
    cursor: ns-resize;
}

.stc-imported-shell .stc-compare-slider:not([data-stc-compare-orientation="vertical"]),
.stc-imported-shell .stc-compare-slider[data-stc-compare-orientation="horizontal"] {
    cursor: ew-resize;
}

.stc-imported-shell .stc-compare-layer,
.stc-imported-shell .stc-compare-overlay {
    position: absolute;
    inset: 0;
}

.stc-imported-shell .stc-compare-layer {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.stc-imported-shell .stc-compare-layer--before {
    z-index: 20;
    overflow: hidden;
}

.stc-imported-shell .stc-compare-layer--after {
    z-index: 10;
    overflow: hidden;
}

.stc-imported-shell .stc-compare-overlay {
    z-index: 25;
    pointer-events: none;
}

.stc-imported-shell .stc-compare-handle {
    position: absolute;
    z-index: 4;
    width: 64px;
    height: 64px;
    border: 2px solid rgba(248, 247, 246, 0.96);
    border-radius: 999px;
    background: rgba(24, 64, 74, 0.68);
    box-shadow: 0 18px 38px rgba(8, 18, 24, 0.24);
    transform: translate(-50%, -50%);
    cursor: inherit;
}

.stc-imported-shell .stc-compare-handle::before,
.stc-imported-shell .stc-compare-handle::after {
    content: "";
    position: absolute;
    background: rgba(248, 247, 246, 0.96);
}

.stc-imported-shell .stc-compare-slider[data-stc-compare-orientation="vertical"] .stc-compare-handle::before {
    left: 50%;
    top: -100vh;
    width: 2px;
    height: 100vh;
    transform: translateX(-50%);
}

.stc-imported-shell .stc-compare-slider[data-stc-compare-orientation="vertical"] .stc-compare-handle::after {
    left: 50%;
    bottom: -100vh;
    width: 2px;
    height: 100vh;
    transform: translateX(-50%);
}

.stc-imported-shell .stc-compare-slider:not([data-stc-compare-orientation="vertical"]) .stc-compare-handle::before,
.stc-imported-shell .stc-compare-slider[data-stc-compare-orientation="horizontal"] .stc-compare-handle::before {
    top: 50%;
    left: -100vh;
    width: 100vh;
    height: 2px;
    transform: translateY(-50%);
}

.stc-imported-shell .stc-compare-slider:not([data-stc-compare-orientation="vertical"]) .stc-compare-handle::after,
.stc-imported-shell .stc-compare-slider[data-stc-compare-orientation="horizontal"] .stc-compare-handle::after {
    top: 50%;
    right: -100vh;
    width: 100vh;
    height: 2px;
    transform: translateY(-50%);
}

.stc-imported-shell .stc-compare-arrow {
    position: absolute;
    left: 50%;
    width: 12px;
    height: 12px;
    border-left: 2px solid rgba(248, 247, 246, 0.96);
    border-top: 2px solid rgba(248, 247, 246, 0.96);
}

.stc-imported-shell .stc-compare-arrow--up {
    top: 14px;
    transform: translateX(-50%) rotate(45deg);
}

.stc-imported-shell .stc-compare-arrow--down {
    bottom: 14px;
    transform: translateX(-50%) rotate(225deg);
}

.stc-imported-shell .stc-compare-label {
    position: absolute;
    left: 24px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(8, 18, 24, 0.62);
    color: #f8f7f6;
    font: 700 11px/1 Montserrat, sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stc-imported-shell .stc-compare-label--before {
    top: 20px;
}

.stc-imported-shell [data-stc-hero-video] {
    position: relative;
    overflow: hidden;
}

.stc-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.stc-hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 18, 24, 0.18), rgba(11, 18, 24, 0.52));
}

.stc-hero-video__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stc-imported-shell [data-stc-hero-video] > .kt-row-column-wrap,
.stc-imported-shell [data-stc-hero-video] > .kt-row-layout-overlay {
    position: relative;
    z-index: 1;
}

.stc-imported-shell--product-detail .stc-product-detail-hero__body {
    max-width: 34rem;
    margin: 18px 0 0;
    color: rgba(248, 247, 246, 0.9);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.55;
}

.stc-overview-gallery--empty {
    display: none;
}

.stc-managed-slider {
    display: grid;
    gap: 18px;
}

.stc-managed-slider__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.stc-managed-slider__eyebrow {
    margin: 0;
    color: rgba(24, 64, 74, 0.72);
    font: 700 12px/1.2 Montserrat, sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.stc-managed-slider__arrows {
    display: flex;
    gap: 10px;
}

.stc-managed-slider__arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(24, 64, 74, 0.16);
    border-radius: 999px;
    background: #fff;
    color: #18404a;
    font-size: 22px;
    cursor: pointer;
}

.stc-managed-slider__track {
    overflow: hidden;
}

.stc-managed-slider__list {
    display: flex;
    transition: transform 280ms ease;
    will-change: transform;
}

.stc-managed-slider__slide {
    flex: 0 0 100%;
    display: grid;
    gap: 18px;
}

.stc-managed-slider__slide-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.stc-managed-slider__slide-copy {
    display: grid;
    gap: 10px;
}

.stc-managed-slider__slide-copy h3,
.stc-managed-slider__slide-copy p {
    margin: 0;
}

.stc-video-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
}

.stc-video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 24, 0.82);
}

.stc-video-modal__dialog {
    position: relative;
    width: min(1120px, calc(100vw - 32px));
    margin: min(8vh, 64px) auto 0;
    z-index: 1;
}

.stc-video-modal__frame-wrap {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}

.stc-video-modal__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.stc-video-modal__close {
    position: absolute;
    top: 16px !important;
    right: 16px !important;
    left: auto !important;
    width: 42px;
    height: 42px;
    min-width: 0;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-size: 26px;
    line-height: 1;
    padding: 0 !important;
    margin: 0 !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
    transform: none !important;
    box-shadow: 0 10px 24px rgba(8, 18, 24, 0.26);
}

.stc-video-modal-open {
    overflow: hidden;
}

.stc-imported-shell .stc-compare-label--after {
    bottom: 20px;
}

.stc-missing-page {
    min-height: 50vh;
    display: grid;
    place-items: center;
    font: 600 18px/1.4 Montserrat, sans-serif;
}

.stc-imported-shell--products [data-stc-section="products-section-1"] .wapf-field-input,
.stc-imported-shell--products [data-stc-section="products-section-1"] .wapf-label-text {
    font-size: 12px;
}

.stc-imported-shell--products [data-stc-section="products-section-1"] .wapf-checkboxes .wapf-input-label {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    column-gap: 8px;
    width: 100%;
}

.stc-imported-shell--products [data-stc-section="products-section-1"] .wapf-checkboxes .wapf-custom {
    margin-top: 1px;
}

.stc-imported-shell--products [data-stc-section="products-section-1"] .wapf-checkboxes .wapf-label-text {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    line-height: 1.35;
}

.stc-imported-shell--products [data-stc-section="products-section-1"] .wapf-checkboxes .wapf-pricing-hint {
    flex: 0 0 auto;
    white-space: nowrap;
    margin-left: 6px;
    font-size: 11px;
}

@media all and (min-width: 1025px) {
    .stc-imported-shell--products [data-stc-section="products-section-1"] > .kb-row-layout-wrap > .kt-row-column-wrap {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    }
}

.stc-content-page {
    background:
        radial-gradient(circle at top left, rgba(255, 183, 67, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(24, 64, 74, 0.05), rgba(24, 64, 74, 0));
    min-height: 100vh;
    padding: 110px 20px 110px;
}

.stc-content-shell {
    width: min(1080px, 100%);
    margin: 0 auto;
    padding: 34px clamp(20px, 4vw, 40px) clamp(32px, 4vw, 40px);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 30px 90px rgba(24, 64, 74, 0.1);
}

.stc-content-shell h1:first-child {
    margin-top: 0;
}

.stc-content-shell a {
    color: var(--stc-surface);
}

.stc-product-detail-page {
    background:
        radial-gradient(circle at top left, rgba(255, 183, 67, 0.18), transparent 24%),
        radial-gradient(circle at top right, rgba(24, 64, 74, 0.14), transparent 28%),
        linear-gradient(180deg, #eef3f1 0%, #f7f3ec 48%, #f3ede4 100%);
}

.stc-product-detail-shell {
    width: min(1320px, 100%);
    display: grid;
    gap: clamp(28px, 4vw, 56px);
}

.stc-product-detail-native-hero,
.stc-product-detail-native-story {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.stc-product-detail-native-hero__copy,
.stc-product-detail-native-story__copy,
.stc-product-detail-native-section__heading,
.stc-product-detail-native-explorer-card__copy {
    display: grid;
    gap: 14px;
}

.stc-product-detail-native-hero__eyebrow,
.stc-product-detail-native-section__eyebrow {
    margin: 0;
    color: rgba(24, 64, 74, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font: 700 11px/1.2 Montserrat, sans-serif;
}

.stc-product-detail-native-hero__copy h1,
.stc-product-detail-native-section__heading h2,
.stc-product-detail-native-story__copy h2,
.stc-product-detail-native-explorer-card__copy h3,
.stc-product-detail-native-feature p,
.stc-product-detail-native-section__heading p,
.stc-product-detail-native-story__copy p,
.stc-product-detail-native-hero__copy p,
.stc-product-detail-native-explorer-card__copy ul {
    margin: 0;
}

.stc-product-detail-native-hero__copy h1 {
    font-size: clamp(2.8rem, 5.8vw, 5.6rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.stc-product-detail-native-hero__price {
    color: #18404a;
    font: 700 1rem/1.2 Montserrat, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stc-product-detail-native-hero__body,
.stc-product-detail-native-section__heading > p:last-child,
.stc-product-detail-native-story__subtitle,
.stc-product-detail-native-story__copy > p:last-of-type {
    max-width: 42rem;
    color: rgba(26, 32, 44, 0.78);
    font-size: 16px;
    line-height: 1.72;
}

.stc-product-detail-native-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.stc-product-detail-native-hero__actions .stc-products-archive-button--ghost {
    background: transparent;
    color: #18404a;
    border: 1px solid rgba(24, 64, 74, 0.18);
}

.stc-product-detail-native-hero__media img,
.stc-product-detail-native-story__media img,
.stc-product-detail-native-gallery__item img,
.stc-product-detail-native-explorer-card__media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
    object-fit: cover;
}

.stc-product-detail-native-hero__media img,
.stc-product-detail-native-story__media img {
    min-height: 440px;
    box-shadow: 0 24px 70px rgba(24, 64, 74, 0.16);
}

.stc-product-detail-native-section {
    display: grid;
    gap: 26px;
}

.stc-product-detail-native-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.stc-product-detail-native-feature {
    padding: 18px;
    border: 1px solid rgba(24, 64, 74, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
}

.stc-product-detail-native-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.stc-product-detail-native-gallery__item {
    margin: 0;
}

.stc-product-detail-native-gallery__item img,
.stc-product-detail-native-explorer-card__media img {
    min-height: 240px;
}

.stc-product-detail-native-explorer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.stc-product-detail-native-explorer-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(24, 64, 74, 0.04);
}

.stc-product-detail-native-explorer-card__copy ul {
    padding-left: 18px;
    color: rgba(26, 32, 44, 0.82);
    line-height: 1.7;
}

.stc-info-page--faq {
    background:
        radial-gradient(circle at top left, rgba(255, 183, 67, 0.2), transparent 24%),
        radial-gradient(circle at top right, rgba(24, 64, 74, 0.08), transparent 28%),
        linear-gradient(180deg, #f5f1ea 0%, #f8f6f2 46%, #f3efe8 100%);
}

.stc-info-page--faq .stc-content-shell {
    width: min(1320px, 100%);
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.stc-info-page__hero {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.stc-info-page__eyebrow,
.stc-faq-cta__eyebrow,
.stc-faq-item__meta,
.stc-faq-hero__panel-label {
    margin: 0;
    color: rgba(24, 64, 74, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font: 700 11px/1.2 Montserrat, sans-serif;
}

.stc-info-page__hero h1,
.stc-info-page__hero p,
.stc-download-item h3,
.stc-download-item p {
    margin: 0;
}

.stc-faq-hero {
    gap: 24px;
    margin-bottom: 36px;
}

.stc-faq-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(20px, 3vw, 34px);
    align-items: stretch;
}

.stc-faq-hero__copy {
    display: grid;
    gap: 18px;
    align-content: center;
    padding: clamp(8px, 1vw, 14px) 0;
}

.stc-faq-hero__copy .stc-info-page__eyebrow {
    color: rgba(24, 64, 74, 0.58);
}

.stc-faq-hero__copy h1 {
    font-family: industry-inc-base, helvetica, arial, sans-serif;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 0.94;
    letter-spacing: 0.01em;
    color: var(--stc-surface);
}

.stc-faq-hero__copy p {
    max-width: 60ch;
    color: rgba(24, 64, 74, 0.78);
    font-size: 17px;
    line-height: 1.72;
}

.stc-faq-hero__topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stc-faq-hero__topics span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(24, 64, 74, 0.1);
    color: var(--stc-surface);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font: 700 11px/1 Montserrat, sans-serif;
}

.stc-faq-hero__media {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(24, 64, 74, 0.02), rgba(24, 64, 74, 0.18)),
        var(--stc-faq-hero-image, url("../imported/about/A7P04102-1600x1067.jpg")) center/cover no-repeat;
    box-shadow: 0 28px 80px rgba(24, 64, 74, 0.14);
}

.stc-faq-hero__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, rgba(24, 64, 74, 0), rgba(24, 64, 74, 0.38));
}

.stc-faq-hero__media-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 248, 239, 0.94);
    color: var(--stc-surface);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font: 700 11px/1 Montserrat, sans-serif;
    backdrop-filter: blur(12px);
}

.stc-faq-hero__media-card {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 1;
    width: min(390px, calc(100% - 44px));
    display: grid;
    gap: 12px;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(255, 248, 239, 0.92);
    color: var(--stc-surface);
    box-shadow: 0 18px 50px rgba(24, 64, 74, 0.18);
    backdrop-filter: blur(12px);
}

.stc-faq-hero__support {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px 28px;
    align-items: center;
    padding: 28px clamp(22px, 3vw, 34px);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 183, 67, 0.24), transparent 30%),
        linear-gradient(135deg, #fff8ef, #f5efe8);
    border: 1px solid rgba(24, 64, 74, 0.08);
}

.stc-faq-hero__media-card h2,
.stc-faq-hero__support-copy h2,
.stc-faq-cta h2 {
    margin: 0;
    color: var(--stc-surface);
    font-family: industry-inc-base, helvetica, arial, sans-serif;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1;
}

.stc-faq-hero__support-copy {
    display: grid;
    gap: 12px;
}

.stc-faq-hero__media-card p,
.stc-faq-hero__support-copy p {
    margin: 0;
    color: rgba(24, 64, 74, 0.78);
    line-height: 1.7;
}

.stc-faq-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 8px;
}

.stc-faq-hero__actions a,
.stc-faq-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--stc-surface);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font: 700 11px/1 Montserrat, sans-serif;
}

.stc-faq-hero__actions a.is-secondary {
    background: #ffffff;
    color: var(--stc-surface);
    border: 1px solid rgba(24, 64, 74, 0.14);
}

.stc-faq-list,
.stc-download-list {
    display: grid;
    gap: 16px;
}

.stc-download-item {
    display: grid;
    gap: 12px;
    padding: 22px;
    border: 1px solid rgba(24, 64, 74, 0.08);
    border-radius: 18px;
    background: #f8fafb;
}

.stc-faq-item {
    display: grid;
    gap: 0;
    border: 1px solid rgba(24, 64, 74, 0.08);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 242, 0.94));
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(24, 64, 74, 0.06);
}

.stc-faq-item.is-open {
    border-color: rgba(24, 64, 74, 0.16);
    box-shadow: 0 24px 54px rgba(24, 64, 74, 0.1);
}

.stc-faq-item__toggle {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 24px 28px;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
}

.stc-faq-item__question {
    color: var(--stc-surface);
    font: 700 clamp(18px, 2vw, 24px)/1.2 Montserrat, sans-serif;
}

.stc-faq-item__icon {
    position: relative;
    width: 18px;
    height: 18px;
}

.stc-faq-item__icon::before,
.stc-faq-item__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--stc-surface);
    transform: translate(-50%, -50%);
    transition: transform 180ms ease, opacity 180ms ease;
}

.stc-faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.stc-faq-item.is-open .stc-faq-item__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.stc-faq-item__answer {
    padding: 0 28px 28px 104px;
}

.stc-faq-item__answer p {
    margin: 0;
    max-width: 68ch;
    color: rgba(24, 64, 74, 0.78);
    line-height: 1.75;
}

.stc-faq-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
    padding: 30px clamp(22px, 3vw, 34px);
    border-radius: 28px;
    background:
        radial-gradient(circle at left center, rgba(255, 183, 67, 0.2), transparent 24%),
        linear-gradient(135deg, rgba(255, 248, 239, 0.98), rgba(245, 239, 232, 0.96));
    border: 1px solid rgba(24, 64, 74, 0.08);
}

.stc-download-item {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.stc-download-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--stc-surface);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font: 700 12px/1 Montserrat, sans-serif;
}

.stc-get-in-touch-page .stc-content-shell {
    display: grid;
    gap: 28px;
}

.stc-get-in-touch-hero,
.stc-get-in-touch-video,
.stc-get-in-touch-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 24px;
    align-items: start;
}

.stc-get-in-touch-hero {
    position: relative;
    padding: 18px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(24, 64, 74, 0.18), rgba(24, 64, 74, 0.02)),
        var(--stc-get-touch-hero-image) center/cover no-repeat;
}

.stc-get-in-touch-hero__copy,
.stc-get-in-touch-form-card,
.stc-get-in-touch-schedule-card,
.stc-get-in-touch-video__copy,
.stc-get-in-touch-video__media,
.stc-get-in-touch-contact-card,
.stc-get-in-touch-contact__map {
    border: 1px solid rgba(24, 64, 74, 0.08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(24, 64, 74, 0.08);
}

.stc-get-in-touch-hero__copy,
.stc-get-in-touch-form-card,
.stc-get-in-touch-video__copy,
.stc-get-in-touch-contact__map {
    padding: 28px;
}

.stc-get-in-touch-hero__copy,
.stc-get-in-touch-form-card,
.stc-get-in-touch-schedule-card,
.stc-get-in-touch-video__copy,
.stc-get-in-touch-section-heading,
.stc-get-in-touch-contact-card {
    display: grid;
    gap: 12px;
}

.stc-get-in-touch-hero__copy h1,
.stc-get-in-touch-hero__copy p,
.stc-get-in-touch-form-card h2,
.stc-get-in-touch-form-card p,
.stc-get-in-touch-schedule-card h3,
.stc-get-in-touch-schedule-card p,
.stc-get-in-touch-video__copy h2,
.stc-get-in-touch-video__copy p,
.stc-get-in-touch-contact-card h3,
.stc-get-in-touch-contact-card p,
.stc-get-in-touch-section-heading h2,
.stc-get-in-touch-section-heading p {
    margin: 0;
}

.stc-get-in-touch-hero__copy h1 {
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    line-height: 0.92;
}

.stc-get-in-touch-hero__copy p {
    font-size: 16px;
    line-height: 1.7;
}

.stc-get-in-touch-section-heading__eyebrow {
    margin: 0;
    font: 700 12px/1 Montserrat, sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(24, 64, 74, 0.62);
}

.stc-get-in-touch-form__grid,
.stc-get-in-touch-schedule__grid,
.stc-get-in-touch-contact__cards {
    display: grid;
    gap: 16px;
}

.stc-get-in-touch-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stc-get-in-touch-form__field {
    display: grid;
    gap: 8px;
}

.stc-get-in-touch-form__field--full {
    grid-column: 1 / -1;
}

.stc-get-in-touch-form__field span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(24, 64, 74, 0.74);
}

.stc-get-in-touch-form__field input,
.stc-get-in-touch-form__field select,
.stc-get-in-touch-form__field textarea {
    width: 100%;
    min-height: 48px;
    padding: 14px 16px;
    border: 1px solid rgba(24, 64, 74, 0.12);
    border-radius: 14px;
    background: #f8fafb;
    color: #18404a;
    font: 500 15px/1.4 Montserrat, sans-serif;
}

.stc-get-in-touch-form__field textarea {
    min-height: 132px;
    resize: vertical;
}

.stc-get-in-touch-form__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.stc-get-in-touch-form__actions button,
.stc-get-in-touch-schedule-card a,
.stc-get-in-touch-video__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: var(--stc-surface);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font: 700 12px/1 Montserrat, sans-serif;
    cursor: pointer;
}

.stc-get-in-touch-form__actions button[disabled] {
    opacity: 0.6;
    cursor: wait;
}

.stc-get-in-touch-form__status {
    margin: 0;
    font-size: 14px;
    color: rgba(24, 64, 74, 0.74);
}

.stc-get-in-touch-form__status.is-success {
    color: #0f766e;
}

.stc-get-in-touch-form__status.is-error {
    color: #b91c1c;
}

.stc-get-in-touch-schedule {
    display: grid;
    gap: 18px;
}

.stc-get-in-touch-schedule__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stc-get-in-touch-schedule-card {
    padding: 24px;
}

.stc-get-in-touch-video__media {
    overflow: hidden;
    min-height: 360px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.18)), var(--stc-get-touch-video-image) center/cover no-repeat, #d9e4e6;
}

.stc-get-in-touch-video__media img,
.stc-get-in-touch-video__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.stc-get-in-touch-video__placeholder {
    background: linear-gradient(135deg, rgba(24, 64, 74, 0.14), rgba(85, 205, 209, 0.22));
}

.stc-get-in-touch-contact__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stc-get-in-touch-contact-card {
    padding: 22px;
}

.stc-get-in-touch-contact__map {
    overflow: hidden;
    min-height: 100%;
    position: relative;
}

.stc-get-in-touch-contact__map iframe,
.stc-get-in-touch-contact__map-placeholder {
    display: block;
    width: 100%;
    min-height: 100%;
    height: 100%;
    border: 0;
}

.stc-get-in-touch-contact__map-placeholder {
    display: grid;
    place-items: center;
    padding: 28px;
    background: #f8fafb;
    color: rgba(24, 64, 74, 0.56);
    text-align: center;
}

.stc-get-in-touch-contact__map-link {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(24, 64, 74, 0.94);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font: 700 11px/1 Montserrat, sans-serif;
    z-index: 1;
}

.stc-imported-shell--get-in-touch .stc-get-in-touch-marquee-section {
    position: relative;
    left: 50%;
    width: 100vw;
    margin:  0 0 0 -50vw;
    padding: 10px 0;
    background: #2d2e31;
    overflow: hidden;
}

.stc-imported-shell--get-in-touch .stc-get-in-touch-marquee {
    overflow: hidden;
}

.stc-imported-shell--get-in-touch .stc-get-in-touch-marquee__track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 20px;
    will-change: transform;
}

.stc-imported-shell--get-in-touch .stc-get-in-touch-marquee__item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 78px;
    padding: 0 24px;
    background: transparent;
    border: 0;
    text-align: center;
}

.stc-imported-shell--get-in-touch .stc-get-in-touch-marquee__logo {
    display: block;
    width: auto;
    max-width: 132px;
    max-height: 38px;
    object-fit: contain;
}

.stc-imported-shell--get-in-touch .stc-get-in-touch-marquee__copy {
    display: grid;
    gap: 3px;
    justify-items: center;
    text-align: center;
}

.stc-imported-shell--get-in-touch .stc-get-in-touch-marquee__title,
.stc-imported-shell--get-in-touch .stc-get-in-touch-marquee__subtitle {
    margin: 0;
}

.stc-imported-shell--get-in-touch .stc-get-in-touch-marquee__title {
    color: #f8f7f6;
    font: 800 18px/1.08 Montserrat, sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stc-imported-shell--get-in-touch .stc-get-in-touch-marquee__subtitle {
    color: rgba(248, 247, 246, 0.84);
    font: 500 12px/1.35 Montserrat, sans-serif;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.stc-imported-shell--get-in-touch .kb-advanced-form select,
.stc-imported-shell--get-in-touch .kb-advanced-form select option,
.stc-imported-shell--get-in-touch .kb-advanced-form select optgroup {
    color: #18404a !important;
    background: #fff !important;
}

.stc-imported-shell--get-in-touch .kb-advanced-form select option[value=""],
.stc-imported-shell--get-in-touch .kb-advanced-form select option[disabled] {
    color: rgba(24, 64, 74, 0.56) !important;
}

.stc-imported-shell--get-in-touch .stc-get-in-touch-video {
    width: min(1320px, calc(100% - 56px));
    margin: 0 auto 72px;
}

@media (max-width: 767px) {
    .stc-imported-shell--get-in-touch .stc-get-in-touch-video {
        width: calc(100% - 32px);
        margin-bottom: 48px;
    }
}

.stc-home-story {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 540px;
    padding: 56px 24px;
    background: linear-gradient(180deg, rgba(11, 18, 24, 0.18), rgba(11, 18, 24, 0.62)), var(--stc-home-story-image) center/cover no-repeat, #111827;
    border-radius: 0;
}

.stc-home-story__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.12));
}

.stc-home-story__content {
    position: relative;
    z-index: 1;
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 14px;
    color: #fff;
}

.stc-home-story__content h2,
.stc-home-story__content p {
    margin: 0;
    color: #fff;
}

.stc-home-story__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    text-decoration: none;
    font: 700 12px/1 Montserrat, sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stc-home-reviews {
    display: grid;
    gap: 24px;
    padding: 48px 24px;
}

.stc-home-reviews__intro {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.stc-home-reviews__eyebrow {
    margin: 0;
    font: 700 12px/1 Montserrat, sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(24, 64, 74, 0.62);
}

.stc-home-review-card {
    padding: 0 24px 8px;
}

.stc-home-review-card__inner {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(24, 64, 74, 0.08);
    overflow: hidden;
}

.stc-home-review-card__media {
    min-height: 100%;
    background: #d9e4e6;
}

.stc-home-review-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.stc-home-review-card__content {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 28px 32px;
}

.stc-home-review-card__content h3,
.stc-home-review-card__content p,
.stc-home-review-card__content strong {
    margin: 0;
}

.stc-home-review-card__stars {
    display: flex;
    gap: 6px;
    color: #f59e0b;
    font-size: 18px;
    line-height: 1;
}

.stc-home-review-card__content strong {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
}

.stc-home-review-card__content a {
    color: var(--stc-surface);
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .stc-faq-hero__grid,
    .stc-faq-hero__support,
    .stc-faq-cta {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .stc-faq-hero__copy {
        padding: 0;
    }

    .stc-faq-hero__media {
        min-height: 360px;
    }

    .stc-faq-item__answer {
        padding-left: 24px;
    }

    .stc-get-in-touch-hero,
    .stc-get-in-touch-video,
    .stc-get-in-touch-contact__grid,
    .stc-get-in-touch-schedule__grid {
        grid-template-columns: 1fr;
    }

    .stc-get-in-touch-contact__map {
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .stc-content-page {
        padding: 92px 14px 112px;
    }

    .stc-content-shell {
        padding: 22px 16px 24px;
        border-radius: 22px;
    }

    .stc-faq-hero__copy {
        min-height: 0;
    }

    .stc-info-page--faq {
        padding-left: 16px;
        padding-right: 16px;
    }

    .stc-info-page--faq .stc-content-shell {
        width: 100%;
    }

    .stc-faq-hero__media {
        min-height: 290px;
        border-radius: 24px;
    }

    .stc-faq-hero__media-badge {
        top: 16px;
        left: 16px;
    }

    .stc-faq-hero__media-card {
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
        padding: 18px;
        border-radius: 18px;
    }

    .stc-faq-hero__support {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .stc-faq-item__toggle {
        grid-template-columns: 1fr auto;
        gap: 14px;
        padding: 18px 18px 16px;
    }

    .stc-faq-item__meta {
        grid-column: 1 / -1;
    }

    .stc-faq-item__question {
        font-size: 18px;
    }

    .stc-faq-item__answer {
        padding: 0 18px 18px;
    }

    .stc-faq-cta {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .stc-faq-hero__actions a,
    .stc-faq-cta a {
        width: 100%;
    }

    .stc-get-in-touch-form__grid,
    .stc-get-in-touch-contact__cards {
        grid-template-columns: 1fr;
    }

    .stc-home-review-card {
        padding: 0 12px 8px;
    }

    .stc-home-review-card__inner {
        grid-template-columns: 1fr;
    }

    .stc-home-review-card__media img {
        min-height: 240px;
    }

    .stc-home-review-card__content {
        padding: 22px;
    }

    .stc-get-in-touch-hero__copy,
    .stc-get-in-touch-form-card,
    .stc-get-in-touch-video__copy,
    .stc-get-in-touch-contact__map,
    .stc-get-in-touch-schedule-card,
    .stc-get-in-touch-contact-card {
        padding: 22px;
    }
}

@keyframes stcRevealUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes stcRevealLeft {
    from { opacity: 0; transform: translateX(-48px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes stcRevealRight {
    from { opacity: 0; transform: translateX(48px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes stcZoomIn {
    from { opacity: 0; transform: scale(0.94); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1024px) {
    .stc-products-builder__shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .stc-products-builder__media {
        position: relative;
        min-height: 42vh;
    }

    .stc-products-builder__media-panel,
    .stc-products-builder__media-panel.is-active {
        min-height: 42vh;
        padding: 96px 24px 24px;
    }

    .stc-products-builder__form {
        padding: 22px 20px 36px;
    }

    .stc-products-builder__brand {
        top: 20px;
        left: 20px;
    }

    .stc-products-builder__floating-bar {
        padding: 12px 16px;
    }

    .stc-shell-header__menu {
        gap: 18px;
    }

    .stc-shell-footer__top,
    .stc-shell-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .stc-shell-footer__actions {
        justify-content: flex-start;
    }

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

    .stc-about-manufacturing {
        grid-template-columns: 1fr;
    }

    .stc-about-manufacturing__stats {
        grid-template-columns: 1fr;
    }

    .stc-flagship-explorer .stc-explorer-tooltip {
        max-width: 200px;
    }

    .stc-home-featured-products {
        grid-template-columns: 1fr;
    }

    .stc-home-featured-products__intro {
        position: static;
    }

    .stc-download-item {
        grid-template-columns: 1fr;
    }

    .stc-home-featured-products__track {
        grid-auto-columns: minmax(300px, 58vw);
    }

    .stc-products-archive-grid {
        grid-template-columns: 1fr;
    }

    .stc-products-archive-hero__inner,
    .stc-products-archive-shell {
        width: min(1320px, calc(100% - 40px));
    }
}

@media (max-width: 767px) {
    .stc-product-builder-main {
        padding: 70px 0 150px;
    }

    .stc-products-builder__option {
        grid-template-columns: 20px minmax(0, 1fr);
    }

    .stc-products-builder__option-price {
        grid-column: 2;
        margin-top: -2px;
    }

    .stc-products-builder__floating-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .stc-products-builder__brand img {
        width: min(170px, 55vw);
    }

    .stc-products-builder__floating-copy strong {
        font-size: 24px;
    }

    .stc-shell-header {
        padding: 14px 16px;
    }

    .stc-shell-header__brand img {
        height: 34px;
    }

    .stc-shell-header__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .stc-shell-header__nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        left: 16px;
        display: none;
        padding: 14px;
        border-radius: 18px;
        background: rgba(12, 22, 28, 0.96);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
    }

    .stc-shell-header.is-open .stc-shell-header__nav {
        display: block;
    }

    .stc-shell-header__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .stc-shell-header__menu,
    .stc-shell-header__menu .sub-menu {
        width: 100%;
    }

    .stc-shell-header__menu .sub-menu {
        position: static;
        display: block;
        min-width: 0;
        margin-top: 10px;
        padding: 12px 0 0 16px;
        background: transparent;
        box-shadow: none;
    }

    .stc-shell-header__menu .sub-menu a {
        padding: 0;
        color: rgba(248, 247, 246, 0.76);
    }

    .stc-shell-header__menu-cta {
        width: 100%;
        margin-left: 0;
        padding-top: 4px;
    }

    .stc-shell-header__menu-cta > a {
        width: 100%;
    }

    .stc-shell-footer {
        padding: 64px 16px 28px;
    }

    .stc-shell-footer__top,
    .stc-shell-footer__bottom,
    .stc-shell-footer__actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .stc-products-builder__summary,
    .stc-products-builder__footer,
    .stc-products-builder__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .stc-home-featured-products {
        width: min(1280px, calc(100% - 32px));
        padding: 56px 0 72px;
    }

    .stc-product-detail-native-hero,
    .stc-product-detail-native-story,
    .stc-product-detail-native-features,
    .stc-product-detail-native-gallery,
    .stc-product-detail-native-explorer-grid {
        grid-template-columns: 1fr;
    }

    .stc-home-featured-products__intro-actions,
    .stc-products-archive-hero__actions,
    .stc-product-detail-native-hero__actions,
    .stc-products-archive-summary,
    .stc-products-archive-summary > div,
    .stc-product-inquiry__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .stc-home-featured-products__track {
        grid-auto-columns: 84vw;
    }

    .stc-builder-modal__dialog,
    .stc-products-builder__panel,
    .stc-about-manufacturing,
    .stc-product-inquiry__dialog {
        padding: 18px;
    }

    .stc-home-product-card {
        min-height: 500px;
    }

    .stc-imported-shell .kadence-block-pro-modal .kt-modal-container,
    #kt-target-modal1135_148c38-95 .kt-modal-container {
        width: 80%;
        padding: 2rem;
    }

    .stc-products-archive-hero {
        min-height: 42vh;
    }

    .stc-products-archive-hero__inner,
    .stc-products-archive-shell {
        width: min(1320px, calc(100% - 32px));
    }

    .stc-product-detail-native-hero__copy h1 {
        font-size: clamp(2.4rem, 13vw, 4rem);
    }

    .stc-product-detail-native-hero__media img,
    .stc-product-detail-native-story__media img,
    .stc-product-detail-native-gallery__item img,
    .stc-product-detail-native-explorer-card__media img {
        min-height: 0;
    }

    .stc-products-archive-hero__inner {
        padding: 132px 0 36px;
    }

    .stc-about-inline-image,
    .stc-about-inline-image img {
        min-height: 240px;
    }

    .stc-products-archive-card__media {
        min-height: 320px;
    }

    .stc-imported-shell .stc-community-popup-host {
        width: 92vw;
        right: 16px;
        bottom: 16px;
    }

    .stc-imported-shell .stc-community-popup-host .kadence-conversion {
        max-width: 92vw !important;
        margin: 0 !important;
    }

    .stc-imported-shell .stc-community-popup-host .kadence-conversions-close {
        left: 12px;
        bottom: 12px;
        font-size: 14px;
    }

    .stc-community-popup .kt-row-column-wrap,
    .stc-community-popup .kb-row-layout-id2979_19ab15-f4 > .kt-row-column-wrap {
        grid-template-columns: 1fr;
    }

    .stc-community-popup .stc-community-popup-image {
        display: none;
    }

    .stc-community-popup .kadence-column3021_50602e-bc > .kt-inside-inner-col {
        padding: 22px 22px 70px;
    }

    .stc-community-popup__intro {
        margin-top: 0;
        font-size: 0.9rem;
    }

    .stc-community-popup-form__feedback {
        margin-right: 0;
        margin-left: 0;
    }

    .stc-imported-shell .kadence-block-pro-modal .kt-modal-overlay,
    #kt-target-modal1135_148c38-95 .kt-modal-overlay {
        padding: 24px 8px;
    }

    .stc-imported-shell .kadence-block-pro-modal .kt-modal-container,
    #kt-target-modal1135_148c38-95 .kt-modal-container {
        width: 100%;
        max-height: calc(100vh - 32px);
        min-height: 0;
        padding: 1rem;
    }

    .stc-flagship-explorer .stc-explorer-dot {
        width: 36px;
        height: 36px;
    }

    .stc-flagship-explorer .stc-explorer-dot__inner {
        font-size: 24px;
    }

    .stc-flagship-explorer .stc-explorer-arrow {
        width: 40px;
        height: 40px;
    }

    .stc-flagship-explorer .stc-explorer-tooltip {
        max-width: 160px;
        font-size: 11px;
        padding: 7px 10px;
    }
}
