:root {
    --ink: #12313f;
    --muted: #647887;
    --line: rgba(18, 49, 63, 0.1);
    --surface: rgba(255, 255, 255, 0.8);
    --blue: #0ea5e9;
    --green: #10b981;
    --purple: #8b5cf6;
    --soft-blue: #e8f8ff;
    --soft-green: #e8fbf4;
    --soft-purple: #f3edff;
    --cream: #fbf8ef;
    --shadow: 0 24px 80px rgba(15, 59, 76, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(14, 165, 233, 0.18), transparent 30%),
        radial-gradient(circle at 86% 12%, rgba(139, 92, 246, 0.13), transparent 28%),
        radial-gradient(circle at 50% 70%, rgba(16, 185, 129, 0.15), transparent 34%),
        linear-gradient(180deg, #fbf8ef 0%, #f7fcff 52%, #f7fbf6 100%);
}

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

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 16px clamp(20px, 5vw, 72px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.68);
    background: rgba(251, 248, 239, 0.82);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--green) 48%, var(--purple));
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.24);
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
}

.main-nav > a,
.nav-item > a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    color: rgba(20, 33, 61, 0.82);
    border-radius: 999px;
    font-size: 14px;
}

.main-nav > a:hover,
.nav-item > a:hover {
    background: rgba(14, 165, 233, 0.08);
    color: var(--blue);
}

.nav-cta {
    color: #fff !important;
    background: linear-gradient(135deg, var(--blue), var(--green)) !important;
}

.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 44px;
    left: 0;
    display: grid;
    gap: 8px;
    min-width: 220px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: 0.2s ease;
}

.dropdown span,
.dropdown a {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--muted);
    background: rgba(14, 165, 233, 0.06);
    font-size: 13px;
}

.dropdown a:hover {
    color: var(--blue);
    background: rgba(16, 185, 129, 0.08);
}

.nav-item:hover .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 26px;
}

.section-pad {
    padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: clamp(32px, 6vw, 86px);
    min-height: calc(100vh - 75px);
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 12px;
    color: #087f9c;
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.08);
    font-size: 13px;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4.2vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

p {
    color: var(--muted);
    line-height: 1.8;
}

.hero-copy > p {
    max-width: 660px;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 500;
}

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--green) 55%, var(--purple));
    box-shadow: 0 18px 40px rgba(14, 165, 233, 0.22);
}

.btn.ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-stats span {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
}

.hero-stats strong {
    font-size: 28px;
}

.hero-panel {
    position: relative;
    min-height: 530px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--panel-border, rgba(255, 255, 255, 0.72));
    border-radius: 42px;
    background: var(--panel-bg, rgba(255, 255, 255, 0.72));
    box-shadow: var(--shadow);
}

.panel-card {
    position: absolute;
    z-index: 2;
    max-width: min(48%, 230px);
    padding: 16px 20px;
    color: var(--panel-card-color, #111111);
    font-size: var(--panel-card-font-size, 16px);
    font-weight: 600;
    line-height: 1.35;
    overflow-wrap: anywhere;
    border: 1px solid var(--panel-card-border, #e4e7ec);
    border-radius: var(--panel-card-radius, 20px);
    background: var(--panel-card-bg, rgba(255, 255, 255, 0.92));
    box-shadow: 0 16px 44px rgba(20, 33, 61, 0.1);
}

.panel-pos-top-left { top: 54px; left: 42px; }
.panel-pos-top-right { top: 126px; right: 40px; }
.panel-pos-bottom-left { bottom: 58px; left: 72px; }
.panel-pos-bottom-right { right: 42px; bottom: 48px; }
.card-a { top: 54px; left: 42px; }
.card-b { top: 126px; right: 40px; }
.card-c { bottom: 58px; left: 72px; }

.shelf-visual {
    position: absolute;
    right: 54px;
    bottom: 78px;
    display: grid;
    gap: 18px;
    width: 68%;
    padding: 32px;
    border-radius: 34px;
    background: var(--panel-visual-bg, #f5f6f8);
    transform: rotate(var(--panel-visual-rotation, -5deg));
}

.shelf-visual span {
    display: block;
    height: 42px;
    border-radius: 999px;
    background: var(--panel-bar-color, #111111);
}

.ticker {
    display: flex;
    gap: 42px;
    overflow: hidden;
    padding: 14px clamp(20px, 5vw, 72px);
    color: #25506f;
    border-block: 1px solid rgba(47, 128, 237, 0.12);
    background: rgba(255, 255, 255, 0.58);
    white-space: nowrap;
}

.ticker div {
    animation: ticker 22s linear infinite;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.section-title {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-title.center {
    margin-inline: auto;
    text-align: center;
}

.about-grid,
.contact {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
    gap: 34px;
    align-items: center;
}

.about-media {
    display: grid;
    place-items: center;
    min-height: 360px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--soft-blue), var(--soft-green), var(--soft-purple));
}

.factory-card {
    padding: 48px 54px;
    color: #fff;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--blue), var(--green), var(--purple));
    box-shadow: 0 22px 56px rgba(47, 128, 237, 0.24);
    font-size: 28px;
}

.feature-list,
.logo-wall,
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-list span,
.logo-wall span {
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.soft-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(237, 246, 255, 0.56));
}

.product-groups {
    display: grid;
    gap: 26px;
}

.product-group,
.case-card,
.solution-card,
.news-card,
.contact-form {
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 56px rgba(20, 33, 61, 0.08);
}

.product-group {
    padding: 24px;
}

.group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.group-head h3 {
    margin-bottom: 0;
}

.group-head a {
    color: var(--blue);
}

.cards-grid,
.solution-grid,
.news-grid,
.case-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover,
.solution-card:hover,
.news-card:hover,
.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(47, 128, 237, 0.13);
}

.product-thumb {
    height: 150px;
    margin-bottom: 16px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(47, 128, 237, 0.72), rgba(22, 199, 132, 0.58), rgba(124, 58, 237, 0.62)),
        repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.22) 18px 20px);
}

.product-card h4,
.solution-card h3,
.news-card h3,
.case-card h3 {
    margin-bottom: 10px;
}

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

.case-card,
.solution-card,
.news-card {
    padding: 26px;
}

.case-card span,
.news-card span,
.solution-index {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--blue);
}

.solution-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-index {
    font-size: 34px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue), var(--green), var(--purple));
    -webkit-background-clip: text;
    color: transparent;
}

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

.news-card h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-card time {
    display: block;
    margin-bottom: 18px;
    color: var(--muted);
}

.news-card a {
    color: var(--green);
}

.honors {
    text-align: center;
}

.logo-wall {
    justify-content: center;
}

.logo-wall span {
    min-width: 132px;
    border-radius: 22px;
}

.process {
    padding-top: 0;
}

.steps {
    justify-content: center;
}

.step {
    display: grid;
    place-items: center;
    gap: 10px;
    width: 150px;
    min-height: 138px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.7);
}

.step span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.step p {
    margin: 0;
    color: var(--ink);
    text-align: center;
}

.contact {
    color: #fff;
    background: linear-gradient(135deg, #1d4ed8, #0f9f78 55%, #6d28d9);
}

.contact p,
.contact .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.contact .eyebrow {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 24px;
    color: var(--ink);
}

.contact-form label {
    display: grid;
    min-width: 0;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.contact-form .full,
.contact-form button {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: 0;
    padding: 13px 14px;
    background: rgba(255, 255, 255, 0.8);
}

.contact-name-company-field {
    width: 100%;
    max-width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(47, 128, 237, 0.46);
    box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.1);
}

.float-service {
    position: fixed;
    right: 18px;
    top: 42%;
    z-index: 15;
    display: grid;
    gap: 10px;
}

.float-service a {
    padding: 12px 14px;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    box-shadow: 0 12px 28px rgba(47, 128, 237, 0.18);
    font-size: 13px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 34px clamp(20px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.64);
}

.site-footer p {
    margin: 8px 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
}

.active-link {
    color: var(--blue) !important;
    background: rgba(14, 165, 233, 0.08);
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: center;
    gap: 32px;
    min-height: 430px;
    background:
        linear-gradient(135deg, rgba(232, 248, 255, 0.72), rgba(232, 251, 244, 0.7), rgba(243, 237, 255, 0.72)),
        var(--cream);
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-summary {
    display: grid;
    place-items: center;
    min-height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: var(--shadow);
}

.page-summary strong {
    font-size: 64px;
    line-height: 1;
    background: linear-gradient(135deg, var(--blue), var(--green), var(--purple));
    -webkit-background-clip: text;
    color: transparent;
}

.page-summary span {
    color: var(--muted);
}

.product-page-section {
    padding-top: 46px;
}

.filter-bar {
    position: sticky;
    top: 74px;
    z-index: 12;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 44px rgba(15, 59, 76, 0.08);
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(18, 49, 63, 0.1);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
}

.filter-btn:hover,
.filter-btn.active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--blue), var(--green), var(--purple));
}

.product-listing {
    gap: 32px;
}

.product-group.is-hidden {
    display: none;
}

.product-category-head {
    align-items: flex-start;
}

.product-category-head h2 {
    margin-bottom: 8px;
    font-size: clamp(26px, 3vw, 36px);
}

.product-category-head p {
    margin-bottom: 0;
}

.product-category-head > span {
    min-width: max-content;
    padding: 10px 14px;
    border-radius: 999px;
    color: #087f9c;
    background: rgba(14, 165, 233, 0.08);
}

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

.product-detail-card h3 {
    margin-bottom: 10px;
}

.product-detail-card > a,
.case-card > a {
    display: inline-flex;
    margin-top: 8px;
    color: var(--green);
    font-weight: 500;
}

.product-spec {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #6d4bd1;
    background: rgba(139, 92, 246, 0.1);
    font-size: 12px;
}

@media (max-width: 1080px) {
    .hero,
    .about-grid,
    .contact {
        grid-template-columns: 1fr;
    }

    .cards-grid,
    .solution-grid,
    .product-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 74px 16px auto 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a,
    .nav-item > a {
        justify-content: space-between;
        border-radius: 14px;
    }

    .dropdown {
        position: static;
        display: none;
        min-width: 0;
        margin: 4px 0 10px;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
    }

    .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown {
        display: grid;
    }

    .hero-panel {
        min-height: 420px;
    }

    .case-strip,
    .news-grid,
    .page-hero {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        top: 88px;
    }

    .float-service {
        right: 12px;
        top: auto;
        bottom: 14px;
        grid-auto-flow: column;
    }
}

@media (max-width: 620px) {
    .site-header {
        padding-inline: 16px;
    }

    .section-pad {
        padding-inline: 16px;
    }

    h1 {
        font-size: 40px;
    }

    .hero {
        min-height: auto;
    }

    .hero-panel {
        min-height: 340px;
        border-radius: 28px;
    }

    .shelf-visual {
        right: 26px;
        bottom: 42px;
        width: 78%;
        padding: 22px;
    }

    .cards-grid,
    .solution-grid,
    .product-page-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .group-head,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .factory-card {
        padding: 36px 32px;
        font-size: 22px;
    }
}

/* Minimal black and white theme */
:root {
    --ink: #111111;
    --muted: #666666;
    --line: #e8e8e8;
    --surface: #ffffff;
    --blue: #111111;
    --green: #111111;
    --purple: #111111;
    --soft-blue: #f7f7f7;
    --soft-green: #f7f7f7;
    --soft-purple: #f7f7f7;
    --cream: #ffffff;
    --shadow: none;
}

body {
    color: var(--ink);
    background: #ffffff;
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
}

.brand-mark,
.btn.primary,
.nav-cta,
.factory-card,
.step span,
.float-service a,
.filter-btn:hover,
.filter-btn.active {
    color: #ffffff !important;
    background: #111111 !important;
    box-shadow: none !important;
}

.main-nav > a,
.nav-item > a,
.dropdown span,
.dropdown a,
.footer-links,
.product-category-head > span,
.product-spec {
    color: var(--muted);
}

.main-nav > a:hover,
.nav-item > a:hover,
.dropdown a:hover,
.group-head a,
.news-card a,
.product-detail-card > a,
.case-card > a,
.active-link {
    color: #111111 !important;
    background: #f5f5f5 !important;
}

.dropdown,
.hero-panel,
.panel-card,
.hero-stats span,
.about-media,
.feature-list span,
.logo-wall span,
.product-group,
.case-card,
.solution-card,
.news-card,
.contact-form,
.step,
.page-summary,
.filter-bar,
.product-card {
    border: 1px solid var(--line) !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

.hero-panel,
.about-media,
.page-hero,
.soft-section,
.contact {
    color: var(--ink);
    background: #ffffff !important;
}

.contact p,
.contact .eyebrow {
    color: var(--muted);
}

.contact .eyebrow,
.eyebrow {
    color: #111111;
    border-color: var(--line);
    background: #f7f7f7;
}

.btn.ghost,
.filter-btn {
    color: #111111;
    border: 1px solid #111111;
    background: #ffffff;
    box-shadow: none;
}

.btn.ghost:hover,
.btn.primary:hover,
.nav-cta:hover,
.float-service a:hover {
    color: #ffffff !important;
    background: #333333 !important;
}

.shelf-visual,
.product-thumb {
    border: 1px solid var(--line);
    background:
        repeating-linear-gradient(90deg, #f2f2f2 0 18px, #ffffff 18px 36px),
        #f7f7f7 !important;
}

.shelf-visual span {
    background: #111111 !important;
}

.ticker {
    color: #111111;
    border-block: 1px solid var(--line);
    background: #ffffff;
}

.product-card:hover,
.solution-card:hover,
.news-card:hover,
.case-card:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.solution-index,
.page-summary strong {
    color: #111111;
    background: none;
    -webkit-background-clip: initial;
}

.contact-form input,
.contact-form textarea,
.form-control {
    border-color: var(--line);
    background: #ffffff;
    color: #111111;
}

.contact-form input:focus,
.contact-form textarea:focus,
.form-control:focus {
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.product-spec,
.product-category-head > span {
    background: #f7f7f7;
}

/* Mega icon menu */
.has-mega {
    position: relative;
}

.mega-menu {
    grid-template-columns: repeat(2, minmax(230px, 1fr));
    gap: 10px;
    min-width: 560px;
    padding: 16px;
}

.mega-card {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 12px !important;
    border: 1px solid var(--line);
    border-radius: 16px !important;
    background: #ffffff !important;
}

.mega-card:hover {
    color: #111111 !important;
    border-color: #111111;
    background: #f7f7f7 !important;
}

.mega-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    border-radius: 12px;
    background: #111111;
    font-size: 15px;
    font-weight: 500;
}

.mega-card strong,
.mega-card small {
    display: block;
}

.mega-card strong {
    margin-bottom: 4px;
    color: #111111;
    font-size: 14px;
    font-weight: 500;
}

.mega-card small {
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mega-card-all {
    background: #f7f7f7 !important;
}

@media (max-width: 820px) {
    .mega-menu {
        grid-template-columns: 1fr;
        min-width: 0;
        padding: 10px;
    }

    .mega-card {
        min-height: 64px;
    }
}

/* Centered logo header */
.header-centered {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

.header-centered .brand-centered {
    justify-self: center;
}

.header-centered .nav-left {
    justify-content: flex-start;
}

.header-centered .nav-right {
    justify-content: flex-end;
}

.header-centered .main-nav {
    width: auto;
}

.header-centered .menu-toggle {
    display: none;
    justify-self: end;
}

@media (max-width: 1080px) {
    .header-centered {
        grid-template-columns: 1fr auto 1fr;
        gap: 14px;
    }

    .header-centered .brand small {
        display: none;
    }
}

@media (max-width: 820px) {
    .header-centered {
        grid-template-columns: 44px 1fr 44px;
    }

    .header-centered .brand-centered {
        grid-column: 2;
    }

    .header-centered .menu-toggle {
        display: block;
        grid-column: 3;
    }

    .header-centered .nav-left,
    .header-centered .nav-right {
        position: fixed;
        inset: 74px 16px auto 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: auto;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

    .header-centered .nav-left.open,
    .header-centered .nav-right.open {
        display: flex;
    }

    .header-centered .nav-right {
        inset: auto 16px auto 16px;
        top: calc(74px + 312px);
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
    }
}

/* Stacked centered logo and centered menu */
.header-stacked {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 18px;
    padding-bottom: 14px;
}

.header-logo-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

.header-logo-row .brand-centered {
    grid-column: 2;
    justify-self: center;
}

.header-logo-row .menu-toggle {
    grid-column: 3;
    justify-self: end;
}

.nav-centered {
    justify-content: center;
    width: 100%;
}

.header-stacked .mega-menu {
    left: 50%;
    transform: translate(-50%, 10px);
}

.header-stacked .nav-item:hover .mega-menu {
    transform: translate(-50%, 0);
}

@media (min-width: 821px) {
    .header-stacked .menu-toggle {
        display: none;
    }
}

@media (max-width: 820px) {
    .header-stacked {
        gap: 10px;
    }

    .header-stacked .menu-toggle {
        display: block;
    }

    .header-stacked .nav-centered {
        position: fixed;
        inset: 96px 16px auto 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: auto;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

    .header-stacked .nav-centered.open {
        display: flex;
    }

    .header-stacked .mega-menu,
    .header-stacked .nav-item:hover .mega-menu {
        transform: none;
    }
}

.header-stacked.header-centered {
    grid-template-columns: 1fr;
}

.header-stacked .main-nav {
    width: 100%;
}

/* Configurable multimedia banner */
.banner-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.banner-mode-tabs {
    position: absolute;
    top: 28px;
    left: clamp(20px, 5vw, 72px);
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.banner-tab {
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #111111;
    background: rgba(255, 255, 255, 0.86);
}

.banner-tab.active,
.banner-tab:hover {
    color: #ffffff;
    border-color: #111111;
    background: #111111;
}

.banner-layer {
    position: absolute;
    inset: 0;
    z-index: -2;
    display: none;
    background: #ffffff;
}

.banner-layer.active {
    display: block;
}

.banner-layer::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(255, 255, 255, 0.72);
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(0.92);
}

.banner-copy-item {
    display: none;
}

.banner-copy-item.active {
    display: block;
}

.banner-panel {
    z-index: 2;
}


@media (max-width: 820px) {
    .banner-mode-tabs {
        position: static;
        grid-column: 1 / -1;
        margin-bottom: 16px;
    }

    .banner-hero {
        padding-top: 42px;
    }
}

/* Product list and detail pages */
.compact-hero {
    min-height: 320px;
}

.product-list-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.multi-filter {
    position: sticky;
    top: 140px;
    padding: 22px;
    border: 1px solid var(--line) !important;
    background: #ffffff !important;
}

.filter-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.filter-head h2,
.filter-section h3 {
    margin: 0;
    font-size: 18px;
}

.filter-head button {
    border: 0;
    color: var(--muted);
    background: transparent;
}

.filter-section {
    display: grid;
    gap: 10px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.filter-section label {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    cursor: pointer;
}

.filter-section input {
    accent-color: #111111;
}

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

.catalog-card {
    overflow: hidden;
    border: 1px solid var(--line) !important;
    background: #ffffff !important;
}

.catalog-card.is-hidden {
    display: none;
}

.catalog-card a {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.catalog-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #f7f7f7;
}

.catalog-card span {
    color: var(--muted);
    font-size: 12px;
}

.catalog-card h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0;
}

.catalog-card p {
    margin: 0;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 34px;
    align-items: start;
}

.detail-media,
.detail-info,
.detail-tab-panel {
    border: 1px solid var(--line) !important;
    border-radius: 30px;
    background: #ffffff !important;
}

.detail-media {
    padding: 18px;
}

.media-stage {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #f7f7f7;
    cursor: zoom-in;
}

.detail-main-media {
    display: none;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.detail-main-media.active {
    display: block;
}

.zoom-lens {
    position: absolute;
    z-index: 4;
    width: 184px;
    height: 184px;
    border: 2px solid rgba(17, 17, 17, .82);
    border-radius: 50%;
    background-color: #ffffff;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 16px 42px rgba(17, 17, 17, .24), inset 0 0 0 3px rgba(255, 255, 255, .82);
    transform: translate(-50%, -50%) scale(.86);
    transition: opacity .14s ease, transform .14s ease;
    will-change: left, top, background-position;
}

.media-stage.zooming .zoom-lens {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.media-switch,
.detail-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.media-switch button,
.detail-tabs button {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #111111;
    background: #ffffff;
}

.media-switch button.active,
.detail-tabs button.active {
    color: #ffffff;
    border-color: #111111;
    background: #111111;
}

.detail-info {
    padding: 28px;
}

.detail-info h1 {
    font-size: clamp(34px, 4vw, 52px);
}

.detail-info dl {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.detail-info dl div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.detail-info dt {
    color: var(--muted);
    font-weight: 400;
}

.detail-info dd {
    margin: 0;
}

.whatsapp-btn {
    width: 100%;
}

.detail-tabs-section {
    padding-top: 0;
}

.detail-tab-panel {
    display: none;
    padding: 28px;
}

.detail-tab-panel.active {
    display: block;
}

.detail-tab-panel details {
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.detail-form-section {
    margin-top: 0;
}

@media (max-width: 1080px) {
    .product-list-layout,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .multi-filter {
        position: static;
    }

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

@media (max-width: 620px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
}

/* Refined product detail page */
.product-detail-hero {
    padding-top: clamp(44px, 6vw, 76px);
}

.detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 13px;
}

.detail-breadcrumb a,
.detail-breadcrumb strong {
    color: #111111;
    font-weight: 500;
}

.detail-layout-refined {
    grid-template-columns: minmax(420px, 0.9fr) minmax(360px, 0.72fr);
    gap: 28px;
}

.detail-media-refined {
    padding: 14px;
    border-radius: 24px;
}

.media-stage-refined {
    border-radius: 18px;
    cursor: crosshair;
}

.media-stage-refined .detail-main-media {
    aspect-ratio: 1.08 / 1;
    max-height: 520px;
    object-fit: contain;
    background: #f8f8f8;
}

.media-thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 120px));
    margin-top: 12px;
}

.media-thumb {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 8px !important;
    border-radius: 14px !important;
}

.media-thumb img,
.media-video-mark {
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 10px;
    object-fit: cover;
    background: #f7f7f7;
}

.media-video-mark {
    display: grid;
    place-items: center;
    color: #111111;
}

.detail-info-refined {
    padding: clamp(22px, 3vw, 34px);
    border-radius: 24px;
}

.detail-info-refined h1 {
    margin-bottom: 14px;
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.08;
}

.detail-summary {
    margin-bottom: 22px;
}

.detail-spec-list {
    margin: 18px 0 24px !important;
}

.detail-action-row {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 12px;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    padding-top: 0;
}

.detail-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.detail-feature-grid span,
.detail-side-card li {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f7f7f7;
}

.detail-feature-grid span {
    padding: 12px;
    text-align: center;
}

.detail-side-card {
    padding: 24px;
    border: 1px solid var(--line) !important;
    background: #ffffff !important;
}

.detail-side-card h2 {
    margin-bottom: 16px;
    font-size: 22px;
    letter-spacing: 0;
}

.detail-side-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-side-card li {
    padding: 12px 14px;
    color: var(--muted);
}

.related-products-section {
    padding-top: 0;
}

.related-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1080px) {
    .detail-layout-refined,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .detail-action-row {
        grid-template-columns: 1fr;
    }

    .detail-feature-grid,
    .related-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .media-stage-refined .detail-main-media {
        aspect-ratio: 1 / 1;
    }

    .detail-feature-grid,
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Store zone map selector */
.store-zone-section {
    padding-bottom: 0;
}

.store-map {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line) !important;
    background: #ffffff !important;
}

.store-map-stage {
    position: relative;
    min-height: 520px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(90deg, transparent 49%, #eeeeee 49% 51%, transparent 51%),
        linear-gradient(0deg, transparent 49%, #eeeeee 49% 51%, transparent 51%),
        #fafafa;
}

.store-map-stage::before {
    position: absolute;
    inset: 24px;
    border: 2px solid #111111;
    border-radius: 22px;
    content: "生活超市卖场平面示意";
    display: grid;
    place-items: start center;
    padding-top: 12px;
    color: var(--muted);
    font-size: 13px;
}
html[lang="en"] .store-map-stage::before { content: "Supermarket Floor Plan"; }

.store-zone {
    position: absolute;
    z-index: 2;
    display: grid;
    align-content: start;
    gap: 6px;
    padding: 14px;
    border: 1px solid #d8d8d8;
    border-radius: 18px;
    color: #111111;
    background: rgba(255, 255, 255, 0.9);
    text-align: left;
    transition: 0.18s ease;
}

.store-zone:hover,
.store-zone.active {
    border-color: #111111;
    background: #111111;
    color: #ffffff;
}

.store-zone strong {
    font-size: 15px;
}

.store-zone small {
    display: -webkit-box;
    overflow: hidden;
    color: inherit;
    opacity: 0.76;
    font-size: 12px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.zone-entrance { left: 7%; top: 9%; width: 23%; min-height: 110px; }
.zone-fresh { left: 35%; top: 9%; width: 27%; min-height: 160px; }
.zone-freezer { right: 7%; top: 9%; width: 24%; min-height: 170px; }
.zone-grocery { left: 7%; bottom: 14%; width: 38%; min-height: 190px; }
.zone-checkout { right: 7%; bottom: 14%; width: 24%; min-height: 120px; }
.zone-wine { left: 50%; bottom: 14%; width: 19%; min-height: 150px; }

.store-zone-info {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #f7f7f7;
}

.store-zone-info strong {
    font-size: 24px;
}

.store-zone-info p {
    margin: 0;
}

@media (max-width: 1080px) {
    .store-map {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .store-map-stage {
        display: grid;
        gap: 10px;
        min-height: 0;
        padding: 14px;
    }

    .store-map-stage::before {
        position: static;
        min-height: 42px;
        padding: 10px;
    }

    .store-zone {
        position: static;
        width: 100%;
        min-height: 0;
    }
}

/* Detailed supermarket floorplan */
.supermarket-map {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
}

.supermarket-floorplan {
    display: grid;
    width: 100%;
    min-width: 0;
    gap: 8px;
    padding: 12px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #ffffff;
}

.floorplan-entry,
.floorplan-exit {
    display: grid;
    place-items: center;
    min-height: 38px;
    border: 1px dashed #111111;
    border-radius: 12px;
    color: #111111;
    background: #f7f7f7;
    font-size: 13px;
}

.floorplan-row,
.floorplan-main,
.floorplan-center,
.floorplan-right,
.floorplan-backhouse,
.floorplan-zone-grid {
    display: grid;
    gap: 8px;
}

.floorplan-row {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.floorplan-main {
    grid-template-columns: 150px minmax(560px, 1fr) 170px;
    align-items: stretch;
}

.floorplan-backhouse {
    align-content: stretch;
}

.floorplan-center {
    grid-template-rows: auto auto auto;
}

.b-zone {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
}

.c-zone {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
}

.d-zone {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
}

.floorplan-right {
    grid-template-columns: 1fr;
}

.e-zone {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
}

.cashier-zone {
    grid-template-columns: 1.1fr 1.1fr 1fr 1.2fr;
}

.store-point {
    display: grid;
    gap: 5px;
    min-height: 86px;
    padding: 10px;
    border: 1px solid #d8d8d8;
    border-radius: 14px;
    color: #111111;
    background: #ffffff;
    text-align: left;
    transition: 0.18s ease;
}

.store-point:hover,
.store-point.active {
    border-color: #111111;
    background: #111111;
    color: #ffffff;
}

.store-point span {
    width: fit-content;
    padding: 3px 7px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
}

.store-point strong {
    font-size: 13px;
    line-height: 1.25;
}

.store-point small {
    display: -webkit-box;
    overflow: hidden;
    color: inherit;
    opacity: 0.72;
    font-size: 11px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.floorplan-backhouse .store-point,
.point-j03 {
    background: #f7f7f7;
}

.floorplan-right .store-point,
.e-zone .store-point,
.cashier-zone .store-point {
    min-height: 76px;
}

@media (max-width: 1080px) {
    .supermarket-map {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .supermarket-floorplan {
        overflow-x: visible;
    }

    .floorplan-main,
    .floorplan-row,
    .b-zone,
    .c-zone,
    .d-zone,
    .e-zone,
    .cashier-zone {
        grid-template-columns: 1fr;
    }

    .floorplan-center,
    .floorplan-right,
    .floorplan-backhouse {
        grid-template-columns: 1fr;
    }
}

.catalog-card.jump-highlight {
    border-color: #111111 !important;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08) !important;
}

/* Order tracking */
.order-query {
    background: #ffffff;
}

.order-query-card {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid var(--line) !important;
    background: #ffffff !important;
}

.order-search {
    display: grid;
    grid-template-columns: 120px minmax(220px, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.order-search label {
    color: var(--muted);
    font-size: 13px;
}

.order-demo-nos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 24px;
    color: var(--muted);
    font-size: 13px;
}

.order-demo-nos button {
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #111111;
    background: #ffffff;
}

.order-summary {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.order-summary div,
.order-empty {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #f7f7f7;
}

.order-summary span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
}

.order-summary strong {
    font-size: 15px;
}

.order-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.order-timeline li {
    display: grid;
    gap: 7px;
    min-height: 104px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
}

.order-timeline li span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid #111111;
    border-radius: 50%;
    font-size: 12px;
}

.order-timeline li.done {
    background: #f7f7f7;
}

.order-timeline li.done span,
.order-timeline li.active span {
    color: #ffffff;
    background: #111111;
}

.order-timeline li.active {
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.order-timeline small {
    color: var(--muted);
}

.logistics-progress {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.vehicle-progress {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
}

.progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.progress-track {
    position: relative;
    height: 12px;
    margin: 24px 10px 14px;
    border: 1px solid #111111;
    border-radius: 999px;
    background: #ffffff;
}

.progress-track span {
    position: absolute;
    inset: 0 auto 0 0;
    border-radius: 999px;
    background: #111111;
}

.progress-track i {
    position: absolute;
    top: 50%;
    font-style: normal;
    transform: translate(-50%, -62%);
}

.vehicle-progress p {
    margin: 0;
}

@media (max-width: 1080px) {
    .order-summary,
    .order-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .logistics-progress,
    .order-search {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .order-summary,
    .order-timeline {
        grid-template-columns: 1fr;
    }
}

/* Order progress animation */
.order-timeline li {
    animation: orderStepIn 0.42s ease both;
}

.order-timeline li:nth-child(2n) { animation-delay: 0.04s; }
.order-timeline li:nth-child(3n) { animation-delay: 0.08s; }
.order-timeline li:nth-child(4n) { animation-delay: 0.12s; }

.order-timeline li.active {
    animation: orderStepIn 0.42s ease both, activePulse 1.7s ease-in-out infinite;
}

.progress-track span {
    animation: progressFill 0.9s ease both;
    transform-origin: left center;
}

.progress-track i {
    animation: vehicleMove 1.2s ease both, vehicleFloat 1.8s ease-in-out infinite 1.2s;
}

.ship-track i {
    animation: vehicleMove 1.2s ease both, shipFloat 2.2s ease-in-out infinite 1.2s;
}

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

@keyframes activePulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(17, 17, 17, 0.12);
    }
}

@keyframes progressFill {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes vehicleMove {
    from {
        left: 0;
    }
}

@keyframes vehicleFloat {
    0%, 100% {
        transform: translate(-50%, -62%);
    }
    50% {
        transform: translate(-50%, -82%);
    }
}

@keyframes shipFloat {
    0%, 100% {
        transform: translate(-50%, -62%) rotate(-2deg);
    }
    50% {
        transform: translate(-50%, -78%) rotate(2deg);
    }
}

/* Product customizer */
.customizer-section {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.customizer-panel,
.customizer-preview {
    border: 1px solid var(--line) !important;
    background: #ffffff !important;
}

.customizer-panel {
    position: sticky;
    top: 140px;
    display: grid;
    gap: 22px;
    padding: 22px;
}

.customizer-group {
    display: grid;
    gap: 10px;
}

.customizer-group h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0;
}

.custom-option,
.custom-chip {
    border: 1px solid var(--line);
    border-radius: 16px;
    color: #111111;
    background: #ffffff;
    text-align: left;
}

.custom-option {
    display: grid;
    gap: 4px;
    padding: 12px;
}

.custom-option small {
    color: var(--muted);
}

.custom-chip {
    min-height: 42px;
    padding: 0 14px;
}

.custom-option.active,
.custom-chip.active,
.color-swatch.active {
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-swatch {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.customizer-logo-input {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.customizer-preview {
    padding: 18px;
}

.customizer-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--muted);
}

.shelf-preview {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 620px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        var(--shelf-texture),
        linear-gradient(180deg, #ffffff, #f7f7f7);
    background-size: 22px 22px, auto;
}

.shelf-frame {
    position: relative;
    display: grid;
    gap: 38px;
    width: min(620px, 82%);
    padding: 72px 54px 54px;
    border: 12px solid var(--shelf-color);
    border-radius: 24px;
    background: var(--shelf-material);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.shelf-frame::before,
.shelf-frame::after {
    position: absolute;
    top: 44px;
    bottom: 36px;
    width: 10px;
    border-radius: 999px;
    background: var(--shelf-color);
    content: "";
}

.shelf-frame::before { left: 44px; }
.shelf-frame::after { right: 44px; }

.shelf-layer {
    height: 30px;
    border-radius: 999px;
    background: var(--shelf-color);
}

.custom-logo {
    position: absolute;
    top: 64px;
    z-index: 2;
    min-width: 180px;
    padding: 10px 22px;
    border: 1px solid #111111;
    border-radius: 999px;
    color: #111111;
    background: rgba(255, 255, 255, 0.88);
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.shelf-preview.model-end-cap .shelf-frame {
    width: min(430px, 76%);
}

.shelf-preview.model-fresh-wood .shelf-frame {
    border-radius: 42px 42px 22px 22px;
}

@media (max-width: 1080px) {
    .customizer-section {
        grid-template-columns: 1fr;
    }

    .customizer-panel {
        position: static;
    }
}

@media (max-width: 620px) {
    .customizer-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .shelf-preview {
        min-height: 430px;
    }

    .shelf-frame {
        gap: 24px;
        padding: 56px 32px 36px;
    }
}

/* 360 and 3D customizer support */
.shelf-preview {
    perspective: 1100px;
    cursor: grab;
}

.shelf-preview.dragging {
    cursor: grabbing;
}

.shelf-frame {
    transform: rotateY(var(--rotate-y));
    transform-style: preserve-3d;
    transition: transform 0.08s linear;
}

.shelf-frame::before,
.shelf-frame::after,
.shelf-layer {
    transform: translateZ(12px);
}

.rotate-hint {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #111111;
    background: rgba(255, 255, 255, 0.88);
    font-size: 12px;
}

.model3d-panel {
    position: absolute;
    inset: 18px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #f7f7f7;
}

.model3d-panel model-viewer {
    width: 100%;
    height: calc(100% - 54px);
    min-height: 430px;
}

.model3d-panel p {
    margin: 0;
    padding: 12px 16px;
    color: var(--muted);
    font-size: 13px;
}

.customizer-mode-model3d .custom-logo,
.customizer-mode-model3d .rotate-hint,
.customizer-mode-model3d .shelf-frame {
    display: none;
}

.customizer-mode-model3d .model3d-panel {
    display: block;
}

.customizer-mode-css360 .model3d-panel {
    display: none;
}

@media (max-width: 620px) {
    .model3d-panel model-viewer {
        min-height: 320px;
    }
}

/* Image to 3D placeholder */
.image-to-3d-box {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.image-upload-drop {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px dashed #111111;
    border-radius: 18px;
    color: #111111;
    background: #f7f7f7;
    cursor: pointer;
}

.image-upload-drop input {
    display: none;
}

.image-upload-drop small,
.image3d-status {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.image3d-preview {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
}

.image3d-status {
    margin: 0;
}

.image3d-progress {
    overflow: hidden;
    height: 10px;
    border: 1px solid #111111;
    border-radius: 999px;
    background: #ffffff;
}

.image3d-progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: #111111;
    transition: width 0.45s ease;
}

[data-generate-3d]:disabled {
    cursor: wait;
    opacity: 0.62;
}

/* 3D model fallback */
.model3d-panel {
    overflow: hidden;
}

.model3d-panel model-viewer {
    display: block;
    min-height: 520px;
    background: #ffffff;
}

.model3d-fallback {
    display: grid;
    place-items: center;
    gap: 10px;
    min-height: 260px;
    padding: 24px;
    border: 1px dashed #111111;
    border-radius: 18px;
    color: #111111;
    background: #ffffff;
    text-align: center;
}

.model3d-fallback a {
    color: #111111;
    text-decoration: underline;
}

.model3d-runtime-fallback[hidden] {
    display: none;
}

.model3d-runtime-fallback {
    position: absolute;
    inset: 18px;
    z-index: 3;
}

/* Article category and list pages */
.article-hero {
    min-height: 390px;
}

.article-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.article-page-section {
    padding-top: 46px;
}

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

.article-sidebar,
.article-card,
.article-empty,
.article-detail-card-main,
.article-related {
    border: 1px solid var(--line) !important;
    border-radius: 30px;
    background: #ffffff !important;
    box-shadow: none !important;
}

.article-sidebar {
    position: sticky;
    top: 94px;
    display: grid;
    gap: 22px;
    padding: 22px;
}

.article-side-block h2,
.article-search label {
    display: block;
    margin-bottom: 14px;
    color: #111111;
    font-size: 18px;
    font-weight: 700;
}

.article-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: #111111;
    background: #ffffff;
    transition: transform 0.2s ease, background 0.2s ease;
}

.article-category-link:hover,
.article-category-link.active {
    color: #ffffff !important;
    background: #111111 !important;
    transform: translateY(-2px);
}

.article-category-link em {
    min-width: 32px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f3f3f3;
    color: #111111;
    font-style: normal;
    text-align: center;
}

.article-category-link:hover em,
.article-category-link.active em {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.article-search {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.article-search > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.article-featured-mini {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.article-featured-mini a {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 18px;
    background: #f7f7f7;
}

.article-featured-mini small {
    color: var(--muted);
}

.article-content-area {
    min-width: 0;
}

.article-list-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.article-list-head h2 {
    margin-bottom: 0;
    font-size: clamp(28px, 3vw, 42px);
}

.article-list-head p {
    margin: 0;
    color: var(--muted);
}

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

.article-card {
    overflow: hidden;
    transition: transform 0.2s ease;
}

.article-card:hover {
    transform: translateY(-4px);
}

.article-thumb {
    display: grid;
    place-items: center;
    min-height: 210px;
    border-bottom: 1px solid var(--line);
    background: #f7f7f7;
}

.article-thumb img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    padding: 28px;
}

.article-card-body {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.article-meta,
.article-detail-meta,
.article-breadcrumb,
.article-detail-tags,
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.article-meta {
    justify-content: space-between;
    color: var(--muted);
    font-size: 13px;
}

.article-meta span,
.article-tags span,
.article-detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f7f7f7;
    color: #111111;
    font-size: 12px;
}

.article-card h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.35;
}

.article-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.article-read-more {
    color: #111111;
    font-weight: 700;
}

.article-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.article-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #111111;
    border-radius: 999px;
    color: #111111;
    background: #ffffff;
}

.article-pagination a.active,
.article-pagination a:hover {
    color: #ffffff !important;
    background: #111111;
}

.article-empty {
    padding: 38px;
    text-align: center;
}

.article-detail-hero {
    display: grid;
    gap: 18px;
    min-height: 420px;
    align-content: center;
    background: #ffffff;
}

.article-detail-hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(38px, 5vw, 72px);
}

.article-detail-hero p {
    max-width: 820px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.article-breadcrumb {
    color: var(--muted);
    font-size: 14px;
}

.article-breadcrumb a:hover {
    color: #111111;
}

.article-detail-meta {
    color: var(--muted);
}

.article-detail-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
    padding-top: 0;
}

.article-detail-card-main,
.article-related {
    padding: 26px;
}

.article-detail-cover {
    display: grid;
    place-items: center;
    min-height: 360px;
    margin-bottom: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #f7f7f7;
}

.article-detail-cover img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    padding: 24px;
}

.article-body {
    margin-top: 22px;
    color: #222222;
    font-size: 17px;
    line-height: 2;
}

.article-body p {
    margin-bottom: 18px;
}

.article-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.article-related {
    position: sticky;
    top: 94px;
}

.article-related .section-title {
    margin-bottom: 18px;
}

.article-related-list {
    display: grid;
    gap: 12px;
}

.article-related-list a {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
}

.article-related-list a:hover {
    background: #f7f7f7;
}

.article-related-list span,
.article-related-list small {
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 1080px) {
    .article-layout,
    .article-detail-section {
        grid-template-columns: 1fr;
    }

    .article-sidebar,
    .article-related {
        position: static;
    }
}

@media (max-width: 720px) {
    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-list-head,
    .article-search > div {
        align-items: stretch;
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .article-thumb,
    .article-thumb img {
        min-height: 180px;
        height: 180px;
    }

    .article-detail-cover {
        min-height: 240px;
    }
}

/* About category page */
.nav-centered {
    flex-wrap: wrap;
}

.about-more-link {
    margin-top: 22px;
}

.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: "";
    position: absolute;
    right: clamp(28px, 7vw, 96px);
    bottom: -120px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.16), transparent 62%);
    pointer-events: none;
}

.about-hero > * {
    position: relative;
    z-index: 1;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.about-category-page {
    padding-top: 42px;
}

.about-filter-bar {
    top: 118px;
}

.about-category-groups {
    display: grid;
    gap: 34px;
}

.about-category-block {
    overflow: hidden;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 20px 70px rgba(15, 59, 76, 0.08);
}

.about-category-block.is-hidden {
    display: none;
}

.about-category-head {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-bottom: 28px;
}

.about-category-head > span {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    color: #fff;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--blue), var(--green), var(--purple));
    box-shadow: 0 16px 38px rgba(14, 165, 233, 0.2);
    font-weight: 700;
}

.about-category-head small {
    display: inline-flex;
    margin-bottom: 8px;
    color: #087f9c;
    font-size: 13px;
}

.about-category-head h2 {
    margin-bottom: 10px;
}

.about-category-head p {
    max-width: 860px;
    margin-bottom: 0;
}

.about-profile-grid,
.about-global-grid,
.about-video-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 24px;
    align-items: stretch;
}

.about-profile-copy,
.about-video-stage,
.global-orbit,
.about-doc-card,
.about-story-card,
.about-job-card,
.global-region-list article,
.about-stat-card,
.about-video-list article {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
}

.about-profile-copy {
    padding: 28px;
}

.about-highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.about-highlight-list span,
.about-job-card a,
.about-video-list span {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    color: #087f9c;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.08);
    font-size: 13px;
}

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

.about-stat-card {
    display: grid;
    place-items: center;
    min-height: 150px;
    padding: 18px;
    text-align: center;
}

.about-stat-card strong {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1;
    background: linear-gradient(135deg, var(--blue), var(--green), var(--purple));
    -webkit-background-clip: text;
    color: transparent;
}

.about-stat-card span {
    color: var(--muted);
}

.about-story-grid,
.about-card-grid,
.global-region-list,
.about-video-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-story-card,
.about-doc-card,
.about-video-list article {
    padding: 24px;
}

.about-story-card > span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 28px;
    font-weight: 800;
}

.about-story-card h3,
.about-doc-card h3,
.about-job-card h3,
.about-video-list h3,
.global-region-list h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.about-timeline {
    position: relative;
    display: grid;
    gap: 18px;
    padding-left: 26px;
}

.about-timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--blue), var(--green), var(--purple));
}

.about-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
}

.about-timeline-item::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 30px;
    width: 14px;
    height: 14px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.14);
}

.about-timeline-item strong {
    color: var(--blue);
    font-size: 28px;
}

.global-orbit {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 420px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.18), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(232, 248, 255, 0.75));
}

.global-orbit::before,
.global-orbit::after {
    content: "";
    position: absolute;
    inset: 54px;
    border: 1px dashed rgba(14, 165, 233, 0.45);
    border-radius: 50%;
    animation: aboutOrbit 12s linear infinite;
}

.global-orbit::after {
    inset: 96px;
    border-color: rgba(139, 92, 246, 0.36);
    animation-duration: 18s;
    animation-direction: reverse;
}

.global-orbit strong {
    position: relative;
    z-index: 1;
    font-size: clamp(36px, 6vw, 68px);
    letter-spacing: -0.06em;
    background: linear-gradient(135deg, var(--blue), var(--green), var(--purple));
    -webkit-background-clip: text;
    color: transparent;
}

.global-orbit small {
    position: relative;
    z-index: 1;
    color: var(--muted);
}

.orbit-dot {
    position: absolute;
    z-index: 2;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 8px rgba(14, 165, 233, 0.12);
}

.dot-a { top: 18%; left: 50%; }
.dot-b { top: 48%; right: 15%; background: var(--green); }
.dot-c { bottom: 20%; left: 24%; background: var(--purple); }
.dot-d { top: 34%; left: 17%; background: var(--green); }

@keyframes aboutOrbit {
    to { transform: rotate(360deg); }
}

.global-region-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.global-region-list article {
    padding: 22px;
}

.about-doc-card {
    position: relative;
    min-height: 230px;
    overflow: hidden;
}

.about-doc-card > span {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.doc-preview-lines {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: grid;
    gap: 8px;
    width: 82px;
}

.doc-preview-lines i {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.18);
}

.doc-preview-lines i:nth-child(2) {
    width: 72%;
    background: rgba(16, 185, 129, 0.18);
}

.doc-preview-lines i:nth-child(3) {
    width: 48%;
    background: rgba(139, 92, 246, 0.18);
}

.about-jobs-list {
    display: grid;
    gap: 14px;
}

.about-job-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 22px;
}

.about-job-card span {
    color: var(--muted);
    font-size: 13px;
}

.about-job-card p {
    margin-bottom: 0;
}


.about-video-stage {
    display: grid;
    place-items: center;
    min-height: 420px;
    padding: 28px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 38%, rgba(14, 165, 233, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(18, 49, 63, 0.96), rgba(20, 33, 61, 0.92));
}

.about-video-stage button {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin-bottom: 22px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--green), var(--purple));
    box-shadow: 0 20px 48px rgba(14, 165, 233, 0.28);
}

.about-video-stage strong {
    color: #ffffff;
    font-size: clamp(26px, 4vw, 44px);
}

.about-video-stage span {
    max-width: 380px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.about-video-list {
    grid-template-columns: 1fr;
}

@media (max-width: 1080px) {
    .about-profile-grid,
    .about-global-grid,
    .about-video-grid {
        grid-template-columns: 1fr;
    }

    .about-card-grid,
    .about-story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-job-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .about-category-head,
    .about-timeline-item,
    .page-hero.about-hero {
        grid-template-columns: 1fr;
    }

    .about-stat-grid,
    .about-card-grid,
    .about-story-grid,
    .global-region-list {
        grid-template-columns: 1fr;
    }

    .about-filter-bar {
        top: 96px;
    }

    .about-category-head > span {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .about-category-block {
        border-radius: 26px;
    }
}

/* Image to 3D model standalone page */
.model3d-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: clamp(28px, 6vw, 78px);
}

.model3d-hero-copy h1 {
    max-width: 780px;
    margin: 12px 0 18px;
    font-size: clamp(40px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.model3d-hero-copy p {
    max-width: 720px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.model3d-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.model3d-stat-row span {
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--muted);
    font-size: 12px;
}

.model3d-stat-row strong {
    color: var(--ink);
    font-size: 20px;
}

.model3d-orbit-card {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 42px;
    background:
        radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.22), transparent 30%),
        linear-gradient(145deg, rgba(255,255,255,0.92), rgba(232,248,255,0.72));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.orbit-ring {
    position: absolute;
    inset: 58px;
    border: 1px dashed rgba(18, 49, 63, 0.22);
    border-radius: 50%;
    animation: modelOrbit 18s linear infinite;
}

.ring-b {
    inset: 110px 70px;
    transform: rotate(28deg);
    animation-duration: 26s;
}

.orbit-core {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 130px;
    height: 130px;
    color: #ffffff;
    border-radius: 36px;
    background: linear-gradient(135deg, var(--blue), var(--green) 50%, var(--purple));
    box-shadow: 0 26px 80px rgba(14, 165, 233, 0.28);
    transform: translate(-50%, -50%) rotate(-8deg);
    font-size: 48px;
    font-weight: 800;
}

.orbit-node {
    position: absolute;
    min-width: 106px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 36px rgba(18, 49, 63, 0.08);
    color: var(--ink);
    text-align: center;
    font-size: 13px;
}

.node-1 { left: 52px; top: 96px; }
.node-2 { right: 44px; top: 140px; }
.node-3 { left: 44px; bottom: 126px; }
.node-4 { right: 70px; bottom: 82px; }

@keyframes modelOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.model3d-workbench {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 28px;
    padding-top: 20px;
}

.model3d-control-card,
.model3d-preview-stage {
    padding: clamp(22px, 4vw, 36px);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
}

.model3d-control-card h2,
.model3d-preview-stage h2 {
    margin: 10px 0 12px;
    font-size: clamp(26px, 3vw, 38px);
    letter-spacing: -0.04em;
}

.model3d-control-card p {
    color: var(--muted);
    line-height: 1.75;
}

.model3d-drop-lg {
    margin: 18px 0;
    min-height: 150px;
    place-items: center;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(14,165,233,.08), rgba(16,185,129,.08)),
        rgba(255,255,255,.82);
}

.model3d-drop-lg strong {
    color: var(--ink);
    font-size: 17px;
}

.model3d-image-preview {
    max-height: 260px;
    margin-bottom: 18px;
}

.model3d-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.model3d-options label,
.model3d-url-inline {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.model3d-progress {
    margin: 18px 0 10px;
}

.model3d-api-note {
    display: grid;
    gap: 8px;
    margin-top: 20px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(232, 248, 255, 0.6);
}

.model3d-api-note code {
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(18, 49, 63, 0.08);
    color: var(--ink);
    font-size: 12px;
}

.model3d-api-note small {
    color: var(--muted);
    line-height: 1.6;
}

.model3d-stage-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    gap: 16px;
    align-items: end;
    margin-bottom: 18px;
}

.model3d-panel-static {
    position: relative;
    inset: auto;
    display: block;
    min-height: 560px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 20%, rgba(14,165,233,.12), transparent 36%),
        #ffffff;
}

.model3d-panel-static model-viewer {
    min-height: 560px;
    height: 560px;
    background: transparent;
}

.model3d-result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.model3d-result-grid article {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
}

.model3d-result-grid span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.model3d-flow-section {
    padding-top: 30px;
}

.model3d-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.model3d-flow-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 46px rgba(18, 49, 63, 0.08);
}

.model3d-flow-grid span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    color: #ffffff;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    font-weight: 700;
}

.model3d-flow-grid h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.model3d-flow-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 1040px) {
    .model3d-hero,
    .model3d-workbench {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 680px) {
    .model3d-stat-row,
    .model3d-options,
    .model3d-stage-head,
    .model3d-result-grid,
    .model3d-flow-grid {
        grid-template-columns: 1fr;
    }

    .model3d-orbit-card {
        min-height: 380px;
    }

    .orbit-core {
        width: 104px;
        height: 104px;
        font-size: 36px;
    }

    .orbit-node {
        min-width: auto;
        font-size: 12px;
    }

    .node-1 { left: 18px; top: 70px; }
    .node-2 { right: 18px; top: 96px; }
    .node-3 { left: 18px; bottom: 90px; }
    .node-4 { right: 18px; bottom: 58px; }

    .model3d-panel-static,
    .model3d-panel-static model-viewer {
        min-height: 380px;
        height: 380px;
    }
}

/* Home AI 3D band */
.model3d-home-band {
    padding-top: 34px;
    padding-bottom: 34px;
}

.model3d-home-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 28px;
    padding: clamp(28px, 5vw, 48px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 84% 18%, rgba(139, 92, 246, 0.14), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,0.9), rgba(232,248,255,0.76));
    box-shadow: var(--shadow);
}

.model3d-home-card h2 {
    margin: 10px 0 14px;
    font-size: clamp(30px, 4vw, 52px);
    letter-spacing: -0.05em;
}

.model3d-home-card p {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.8;
}

.model3d-mini-scene {
    position: relative;
    display: grid;
    grid-template-columns: 96px 40px 116px;
    align-items: center;
    min-height: 220px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255,255,255,0.78);
    overflow: hidden;
}

.mini-upload,
.mini-cube {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    height: 96px;
    border-radius: 24px;
    font-weight: 800;
}

.mini-upload {
    border: 1px dashed var(--ink);
    color: var(--ink);
    background: #ffffff;
}

.mini-arrow {
    position: relative;
    z-index: 2;
    color: var(--muted);
    text-align: center;
    font-size: 30px;
}

.mini-cube {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--green), var(--purple));
    box-shadow: 0 18px 54px rgba(14, 165, 233, 0.24);
    transform: rotateY(-18deg) rotateX(8deg);
    transform-style: preserve-3d;
}

.mini-lines {
    position: absolute;
    inset: auto -30px 30px -30px;
    height: 80px;
    background: repeating-linear-gradient(90deg, rgba(18,49,63,.08) 0 1px, transparent 1px 22px);
    transform: perspective(420px) rotateX(62deg);
}

@media (max-width: 760px) {
    .model3d-home-card {
        grid-template-columns: 1fr;
    }

    .model3d-mini-scene {
        grid-template-columns: 1fr 32px 1fr;
    }
}

.image-upload-drop.drag-over {
    border-color: var(--blue);
    background: rgba(14, 165, 233, 0.12);
    transform: translateY(-2px);
}

/* Remote monitor preview */
.monitor-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 420px;
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    background:
        radial-gradient(circle at 82% 18%, rgba(14, 165, 233, 0.18), transparent 34%),
        radial-gradient(circle at 16% 86%, rgba(34, 197, 94, 0.16), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(232,248,255,0.72));
}

.monitor-hero h1,
.monitor-home-card h2 {
    margin: 10px 0 16px;
    font-size: clamp(36px, 6vw, 72px);
    letter-spacing: -0.06em;
    line-height: 0.96;
}

.monitor-hero p,
.monitor-home-card p {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.85;
}

.monitor-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.monitor-stat-row span {
    display: grid;
    gap: 4px;
    min-width: 142px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.76);
    color: var(--muted);
}

.monitor-stat-row strong {
    color: var(--ink);
    font-size: 20px;
}

.monitor-radar-card {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 420px;
    border: 1px solid var(--line);
    border-radius: 36px;
    background:
        linear-gradient(160deg, rgba(255,255,255,0.9), rgba(232,248,255,0.62)),
        repeating-linear-gradient(90deg, rgba(18,49,63,.06) 0 1px, transparent 1px 24px);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.radar-orbit {
    position: absolute;
    border: 1px solid rgba(18, 49, 63, 0.12);
    border-radius: 50%;
    animation: radarSpin 16s linear infinite;
}

.orbit-one { width: 150px; height: 150px; }
.orbit-two { width: 240px; height: 240px; animation-duration: 22s; }
.orbit-three { width: 330px; height: 330px; animation-duration: 30s; }

.radar-core {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 118px;
    height: 118px;
    border-radius: 36px;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, var(--blue), var(--green), var(--purple));
    box-shadow: 0 24px 70px rgba(14, 165, 233, 0.26);
}

.radar-dot {
    position: absolute;
    z-index: 3;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,0.86);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(18,49,63,0.08);
}

.dot-a { left: 42px; top: 76px; }
.dot-b { right: 52px; top: 104px; }
.dot-c { left: 74px; bottom: 86px; }
.dot-d { right: 46px; bottom: 64px; }

@keyframes radarSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.monitor-category-grid,
.monitor-feature-grid,
.monitor-multiview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.monitor-category-card,
.monitor-feature-grid article {
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.monitor-category-card span {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(14, 165, 233, 0.1);
    font-size: 26px;
}

.monitor-category-card h3,
.monitor-feature-grid h3,
.monitor-mini-view h3 {
    margin: 0 0 10px;
    font-size: 20px;
    letter-spacing: -0.03em;
}

.monitor-category-card p,
.monitor-feature-grid p,
.monitor-mini-view p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.monitor-workbench {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.monitor-device-panel,
.monitor-preview-card {
    padding: 24px;
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--shadow);
}

.monitor-panel-head,
.monitor-preview-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.monitor-panel-head h2,
.monitor-preview-head h2 {
    margin: 6px 0 0;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -0.05em;
}

.monitor-preview-head p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.monitor-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.monitor-filter-tabs button {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    background: #fff;
    color: var(--muted);
    font-weight: 700;
}

.monitor-filter-tabs button.active,
.monitor-filter-tabs button:hover {
    color: #fff;
    border-color: transparent;
    background: var(--ink);
}

.monitor-device-list {
    display: grid;
    gap: 12px;
    max-height: 620px;
    overflow: auto;
    padding-right: 4px;
}

.monitor-device-card {
    position: relative;
    display: grid;
    gap: 6px;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px 16px 16px 42px;
    background: #fff;
    text-align: left;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.monitor-device-card.active,
.monitor-device-card:hover {
    border-color: rgba(14, 165, 233, 0.36);
    box-shadow: 0 16px 42px rgba(14, 165, 233, 0.12);
    transform: translateY(-2px);
}

.monitor-device-card strong {
    color: var(--ink);
    font-size: 15px;
}

.monitor-device-card small {
    color: var(--muted);
}

.monitor-status-dot {
    position: absolute;
    left: 16px;
    top: 21px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #94a3b8;
    box-shadow: 0 0 0 6px rgba(148,163,184,0.12);
}

.monitor-status-dot.online { background: #22c55e; box-shadow: 0 0 0 6px rgba(34,197,94,0.14); }
.monitor-status-dot.idle { background: #f59e0b; box-shadow: 0 0 0 6px rgba(245,158,11,0.14); }
.monitor-status-dot.offline { background: #ef4444; box-shadow: 0 0 0 6px rgba(239,68,68,0.12); }

.monitor-live-badge {
    display: inline-grid;
    place-items: center;
    min-width: 84px;
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    color: #fff;
    background: var(--ink);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.monitor-live-badge.online { background: #16a34a; }
.monitor-live-badge.idle { background: #d97706; }
.monitor-live-badge.offline { background: #dc2626; }

.monitor-player-shell {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 480px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 36%, rgba(14,165,233,0.16), transparent 32%),
        linear-gradient(145deg, #07111f, #101827 55%, #111827);
    overflow: hidden;
}

.monitor-video,
.monitor-mjpeg,
.monitor-iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    border: 0;
    background: #0f172a;
}

.monitor-mjpeg {
    object-fit: contain;
    padding: 34px;
    background: rgba(255,255,255,0.96);
}

.monitor-empty {
    display: grid;
    gap: 10px;
    max-width: 520px;
    padding: 28px;
    text-align: center;
    color: rgba(255,255,255,0.84);
}

.monitor-empty strong {
    font-size: 24px;
    color: #fff;
}

.monitor-corners span {
    position: absolute;
    width: 32px;
    height: 32px;
    border-color: rgba(255,255,255,0.62);
    border-style: solid;
}

.monitor-corners span:nth-child(1) { left: 18px; top: 18px; border-width: 2px 0 0 2px; }
.monitor-corners span:nth-child(2) { right: 18px; top: 18px; border-width: 2px 2px 0 0; }
.monitor-corners span:nth-child(3) { left: 18px; bottom: 18px; border-width: 0 0 2px 2px; }
.monitor-corners span:nth-child(4) { right: 18px; bottom: 18px; border-width: 0 2px 2px 0; }

.monitor-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}

.monitor-meta-grid article {
    display: grid;
    gap: 6px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(248,250,252,0.86);
}

.monitor-meta-grid strong {
    color: var(--ink);
}

.monitor-meta-grid span {
    color: var(--muted);
    font-size: 13px;
}

.monitor-url-panel {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(248,250,252,0.86);
}

.monitor-url-panel label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.monitor-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.monitor-actions span {
    color: var(--muted);
    font-size: 14px;
}

.monitor-mini-view {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.mini-view-screen {
    display: grid;
    place-items: center;
    gap: 10px;
    min-height: 160px;
    margin-bottom: 16px;
    border-radius: 20px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 28%, rgba(255,255,255,0.18), transparent 30%),
        linear-gradient(135deg, #0f172a, #12313f);
}

.mini-view-screen span {
    font-size: 36px;
}

.mini-view-screen strong {
    letter-spacing: 0.12em;
}

.monitor-api-note {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 24px;
    border-radius: 26px;
    background: rgba(232,248,255,0.72);
}

.monitor-api-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.monitor-api-note code {
    display: inline-block;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(18,49,63,0.08);
    color: var(--ink);
}

.monitor-home-band {
    padding-top: 34px;
    padding-bottom: 34px;
}

.monitor-home-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: center;
    padding: clamp(28px, 5vw, 48px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 82% 18%, rgba(34,197,94,0.16), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,0.92), rgba(240,253,244,0.72));
    box-shadow: var(--shadow);
}

.monitor-mini-scene {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 220px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        repeating-linear-gradient(90deg, rgba(18,49,63,.08) 0 1px, transparent 1px 24px),
        rgba(255,255,255,0.78);
    overflow: hidden;
}

.monitor-mini-camera {
    position: absolute;
    left: 38px;
    top: 48px;
    width: 74px;
    height: 48px;
    border-radius: 16px 16px 16px 6px;
    background: var(--ink);
}

.monitor-mini-camera::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 14px;
    border-left: 24px solid var(--ink);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.monitor-mini-beam {
    position: absolute;
    left: 112px;
    top: 66px;
    width: 170px;
    height: 86px;
    background: linear-gradient(90deg, rgba(14,165,233,.26), transparent);
    clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 65%);
}

.monitor-mini-scene strong {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 108px;
    height: 108px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--green));
    box-shadow: 0 18px 54px rgba(34,197,94,.22);
}

.monitor-mini-scene em {
    position: absolute;
    bottom: 24px;
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

@media (max-width: 1100px) {
    .monitor-hero,
    .monitor-workbench,
    .monitor-home-card {
        grid-template-columns: 1fr;
    }

    .monitor-category-grid,
    .monitor-feature-grid,
    .monitor-multiview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .monitor-radar-card {
        min-height: 340px;
    }

    .monitor-category-grid,
    .monitor-feature-grid,
    .monitor-multiview-grid,
    .monitor-meta-grid,
    .monitor-url-panel {
        grid-template-columns: 1fr;
    }

    .monitor-player-shell,
    .monitor-video,
    .monitor-mjpeg,
    .monitor-iframe {
        min-height: 340px;
    }

    .monitor-panel-head,
    .monitor-preview-head {
        flex-direction: column;
    }
}


/* Product detail upgrade: gallery, downloads, installation videos */
.product-detail-upgraded {
    align-items: stretch;
}

.detail-gallery-card,
.product-detail-sidebar {
    box-shadow: 0 24px 70px rgba(17, 17, 17, .08);
}

.media-thumbs-upgraded {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.media-thumbs-upgraded .media-thumb {
    grid-template-columns: 44px minmax(0, 1fr);
    justify-content: start;
    min-height: 62px;
    text-align: left;
}

.media-thumbs-upgraded .media-thumb span:last-child {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 13px;
}

.media-thumbs-upgraded .media-thumb img,
.media-thumbs-upgraded .media-video-mark {
    width: 44px;
    height: 44px;
}

.product-resource-panel {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.resource-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.resource-head h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: 0;
}

.download-list,
.install-video-list {
    display: grid;
    gap: 10px;
}

.download-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: #111111;
    background: #fafafa;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.download-card:hover {
    transform: translateY(-2px);
    border-color: #111111;
    background: #ffffff;
}

.download-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: #ffffff;
    background: #111111;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.download-card strong,
.install-video-list strong {
    display: block;
    font-size: 15px;
    line-height: 1.2;
}

.download-card small,
.install-video-list small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.download-card em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    white-space: nowrap;
}

.sidebar-install-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #111111;
    object-fit: cover;
}

.install-video-list {
    margin-top: 10px;
}

.install-video-list button {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: start;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    text-align: left;
    background: #ffffff;
}

.install-video-list button span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: 12px;
    color: #ffffff;
    background: #111111;
    font-size: 12px;
    font-weight: 700;
}

.install-video-list button.active {
    border-color: #111111;
    background: #f7f7f7;
}

@media (max-width: 1080px) {
    .media-thumbs-upgraded {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .media-thumbs-upgraded,
    .download-card {
        grid-template-columns: 1fr;
    }

    .download-card em {
        white-space: normal;
    }

    .resource-head {
        display: grid;
    }
}

/* Case and solution category/list/detail upgrade */
.case-solution-page,
.case-solution-detail-page {
    position: relative;
}

.case-solution-hero {
    align-items: stretch;
}

.case-solution-hero .page-summary {
    min-width: 260px;
}

.case-solution-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.case-solution-sidebar {
    position: sticky;
    top: 132px;
    padding: 22px;
    border: 1px solid var(--line) !important;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82) !important;
    box-shadow: 0 18px 56px rgba(20, 33, 61, 0.08);
}

.sidebar-title h2,
.list-toolbar h2,
.project-card-body h3,
.detail-main-card h2,
.detail-side-card h2 {
    letter-spacing: -0.02em;
}

.vertical-category {
    display: grid;
    gap: 10px;
    margin: 18px 0 20px;
}

.vertical-category a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.64);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.vertical-category a:hover,
.vertical-category a.active {
    transform: translateY(-2px);
    border-color: rgba(14, 165, 233, 0.28);
    box-shadow: 0 16px 36px rgba(14, 165, 233, 0.12);
}

.vertical-category span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--green), var(--purple));
    font-weight: 800;
}

.vertical-category strong {
    font-size: 15px;
}

.vertical-category em {
    min-width: 34px;
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--muted);
    background: rgba(18, 49, 63, 0.06);
    text-align: center;
    font-style: normal;
    font-size: 12px;
}

.case-solution-search {
    display: grid;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.case-solution-search label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.case-solution-search .form-control {
    min-height: 48px;
    border-radius: 16px;
}

.case-solution-content {
    display: grid;
    gap: 18px;
}

.list-toolbar,
.empty-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid var(--line) !important;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78) !important;
}

.list-toolbar h2,
.list-toolbar p,
.empty-card p {
    margin: 0;
}

.list-toolbar p {
    min-width: max-content;
    color: var(--muted);
}

.empty-card {
    display: grid;
    justify-items: start;
}

.empty-card strong {
    font-size: 22px;
}

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

.project-list-grid.small-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-list-card {
    overflow: hidden;
    border: 1px solid var(--line) !important;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82) !important;
    box-shadow: 0 18px 56px rgba(20, 33, 61, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 70px rgba(14, 165, 233, 0.14);
}

.project-cover,
.project-hero-visual,
.gallery-placeholder {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 210px;
    padding: 18px;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.92), rgba(16, 185, 129, 0.82), rgba(139, 92, 246, 0.8)),
        repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, 0.16) 16px 18px);
}

.project-cover::before,
.project-hero-visual::before,
.gallery-placeholder::before {
    content: '';
    position: absolute;
    inset: 18px 18px auto auto;
    width: 92px;
    height: 92px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.16);
    transform: rotate(12deg);
}

.project-cover::after,
.project-hero-visual::after,
.gallery-placeholder::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.project-cover span,
.project-cover strong,
.project-hero-visual span,
.project-hero-visual strong,
.gallery-placeholder span,
.gallery-placeholder strong {
    position: relative;
    z-index: 1;
}

.project-cover span,
.project-hero-visual span,
.gallery-placeholder span {
    display: inline-flex;
    width: max-content;
    margin-bottom: 8px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 12px;
}

.project-cover strong,
.project-hero-visual strong,
.gallery-placeholder strong {
    font-size: 20px;
}

.case-community,
.case-convenience,
.case-24h,
.case-campus,
.solution-convenience,
.solution-small-store,
.solution-chain {
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.92), rgba(14, 165, 233, 0.84), rgba(18, 49, 63, 0.88)),
        repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, 0.16) 16px 18px);
}

.case-fresh,
.case-fruit,
.case-meat,
.solution-fresh,
.solution-meat,
.solution-frozen {
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.94), rgba(251, 191, 36, 0.72), rgba(14, 165, 233, 0.82)),
        repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, 0.16) 16px 18px);
}

.case-cooler,
.case-beverage,
.case-frozen,
.solution-cooler-display {
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(59, 130, 246, 0.86), rgba(139, 92, 246, 0.82)),
        repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, 0.16) 16px 18px);
}

.case-premium,
.solution-visual,
.solution-endcap,
.solution-category,
.solution-layout,
.solution-efficiency {
    background:
        linear-gradient(135deg, rgba(18, 49, 63, 0.96), rgba(139, 92, 246, 0.82), rgba(14, 165, 233, 0.72)),
        repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, 0.16) 16px 18px);
}

.project-card-body {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.project-card-body h3 {
    margin: 0;
    font-size: 22px;
}

.project-card-body p {
    margin: 0;
    color: var(--muted);
}

.project-meta-line,
.project-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
}

.project-card-foot {
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.project-card-foot a,
.project-card-body h3 a:hover,
.solution-card > a {
    color: var(--blue);
    font-weight: 700;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-row span {
    display: inline-flex;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.tag-row.large span {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
}

.solution-number {
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--green), var(--purple));
    -webkit-background-clip: text;
    color: transparent;
}

.detail-case-hero {
    padding-bottom: 28px;
}

.detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14px;
}

.detail-breadcrumb a:hover {
    color: var(--blue);
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 28px;
    align-items: stretch;
}

.detail-hero-grid h1 {
    max-width: 900px;
    font-size: clamp(38px, 5vw, 72px);
    letter-spacing: -0.06em;
}

.detail-hero-grid p {
    max-width: 780px;
    color: var(--muted);
    font-size: 18px;
}

.project-hero-visual {
    min-height: 360px;
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.project-detail-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
}

.detail-main-card,
.detail-side-card {
    border: 1px solid var(--line) !important;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.84) !important;
    box-shadow: 0 18px 56px rgba(20, 33, 61, 0.08);
}

.detail-main-card {
    display: grid;
    gap: 26px;
    padding: 30px;
}

.analysis-block {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.58);
}

.analysis-block h3,
.solution-detail-columns h3,
.process-roadmap h2,
.project-gallery-section h2 {
    margin-bottom: 12px;
}

.analysis-block p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}

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

.result-grid div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(232, 248, 255, 0.52));
}

.result-grid span {
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-weight: 800;
}

.project-gallery-section {
    display: grid;
    gap: 16px;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.gallery-placeholder {
    min-height: 180px;
    border-radius: 24px;
}

.detail-side-stack {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 132px;
}

.detail-side-card {
    padding: 24px;
}

.info-dl {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
}

.info-dl div {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.info-dl dt {
    color: var(--muted);
    font-weight: 400;
}

.info-dl dd {
    margin: 0;
    font-weight: 700;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 800;
}

.dark-list li {
    color: var(--ink);
}

.cta-card {
    color: #ffffff;
    background: linear-gradient(135deg, var(--ink), var(--purple), var(--blue)) !important;
}

.cta-card p,
.cta-card .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.cta-card .btn.ghost {
    color: var(--ink);
    border-color: #ffffff;
    background: #ffffff;
}

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

.solution-detail-columns > div,
.process-roadmap {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
}

.process-roadmap ol {
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.process-roadmap li {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.process-roadmap span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #ffffff;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    font-weight: 800;
}

.mini-download-list {
    margin-bottom: 0;
}

.mini-download-list li {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
}

.mini-download-list li::before {
    content: none;
}

.mini-download-list a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.66);
}

.mini-download-list span {
    color: var(--blue);
    font-size: 12px;
}

.related-section {
    padding-top: 0;
}

@media (max-width: 1180px) {
    .case-solution-layout,
    .detail-hero-grid,
    .project-detail-grid {
        grid-template-columns: 1fr;
    }

    .case-solution-sidebar,
    .detail-side-stack {
        position: static;
    }

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

@media (max-width: 760px) {
    .case-solution-hero,
    .list-toolbar,
    .project-meta-line,
    .project-card-foot {
        align-items: flex-start;
    }

    .list-toolbar,
    .project-card-foot {
        flex-direction: column;
    }

    .project-list-grid,
    .project-list-grid.small-grid,
    .result-grid,
    .project-gallery-grid,
    .solution-detail-columns {
        grid-template-columns: 1fr;
    }

    .project-hero-visual {
        min-height: 260px;
    }

    .info-dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* Video module */
.video-page,
.video-detail-page {
    position: relative;
}

.video-home-section .section-title p {
    max-width: 680px;
    color: var(--muted);
}

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

.section-more-line {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.video-cover {
    min-height: 225px;
}

.video-cover::before,
.video-detail-cover::before {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    transform: none;
}

.video-cover::after,
.video-detail-cover::after {
    content: '▶';
    display: grid;
    place-items: center;
    right: 26px;
    bottom: 26px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.36);
    font-size: 20px;
}

.video-cover em {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: max-content;
    margin-top: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-style: normal;
    font-size: 12px;
}

.video-product,
.video-freezer {
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.94), rgba(16, 185, 129, 0.84), rgba(139, 92, 246, 0.78)),
        repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, 0.16) 16px 18px);
}

.video-installation,
.video-store-install {
    background:
        linear-gradient(135deg, rgba(18, 49, 63, 0.95), rgba(14, 165, 233, 0.84), rgba(16, 185, 129, 0.78)),
        repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, 0.16) 16px 18px);
}

.video-case {
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.94), rgba(251, 191, 36, 0.72), rgba(14, 165, 233, 0.82)),
        repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, 0.16) 16px 18px);
}

.video-company {
    background:
        linear-gradient(135deg, rgba(18, 49, 63, 0.96), rgba(139, 92, 246, 0.82), rgba(14, 165, 233, 0.72)),
        repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, 0.16) 16px 18px);
}

.video-main-card {
    display: grid;
    gap: 24px;
}

.h5-video-card {
    display: grid;
    gap: 14px;
}

.h5-player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #0f172a;
    box-shadow: 0 24px 70px rgba(20, 33, 61, 0.18);
}

.h5-video-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0f172a;
}

.danmaku-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.danmaku-layer.is-hidden {
    display: none;
}

.danmaku-item {
    position: absolute;
    left: 100%;
    max-width: 72%;
    padding: 6px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(18, 49, 63, 0.48);
    white-space: nowrap;
    font-size: 14px;
    animation: danmakuMove 14s linear forwards;
}

@keyframes danmakuMove {
    from { transform: translateX(0); }
    to { transform: translateX(-140vw); }
}

.danmaku-toolbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.danmaku-toolbar label {
    display: grid;
    gap: 6px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.danmaku-toolbar .form-control {
    min-height: 44px;
    border-radius: 14px;
}

.video-desc-block,
.video-chapter-block {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.video-desc-block p {
    margin: 0;
    color: var(--muted);
}

.video-chapter-block ol {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.video-chapter-block li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.66);
}

.video-chapter-block span {
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    color: #ffffff;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    font-weight: 800;
}

@media (max-width: 1180px) {
    .video-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .video-home-grid {
        grid-template-columns: 1fr;
    }

    .danmaku-toolbar {
        grid-template-columns: 1fr;
    }
}

/* Automatic 20-day / 15-business-day order workflow */
.order-hero{background:linear-gradient(180deg,#fafbff 0%,#fff 100%)}
.order-result{margin-top:8px}
.order-empty{display:grid;place-items:center;min-height:220px;text-align:center}.order-empty-icon{display:grid;place-items:center;width:54px;height:54px;margin-bottom:12px;border:1px solid var(--line);border-radius:50%;font-size:24px;background:#fff}.order-empty strong{font-size:18px}.order-empty p{margin:8px 0 0;color:var(--muted)}
.order-summary.auto-summary{grid-template-columns:repeat(5,minmax(0,1fr));margin-top:4px}.order-summary.auto-summary div{position:relative;overflow:hidden;background:linear-gradient(145deg,#fff,#f7f8fb)}.order-summary.auto-summary div:after{content:"";position:absolute;right:-25px;bottom:-35px;width:75px;height:75px;border:14px solid rgba(17,17,17,.025);border-radius:50%}.order-summary.auto-summary strong{position:relative;z-index:1;word-break:break-word}
.workflow-animation{position:relative;overflow:hidden;margin:0 0 28px;padding:24px;border:1px solid #161616;border-radius:24px;color:#fff;background:radial-gradient(circle at 85% 0%,rgba(255,255,255,.15),transparent 28%),linear-gradient(135deg,#111,#252525)}.workflow-animation:after{content:"";position:absolute;inset:0;background:linear-gradient(110deg,transparent 25%,rgba(255,255,255,.06) 42%,transparent 58%);transform:translateX(-100%);animation:workflowShine 4.8s ease-in-out infinite}.workflow-animation-head{position:relative;z-index:1;display:flex;justify-content:space-between;align-items:flex-start;gap:24px}.workflow-animation-head span{font-size:10px;letter-spacing:1.6px;color:rgba(255,255,255,.58)}.workflow-animation-head h2{margin:7px 0 6px;font-size:clamp(18px,2.3vw,28px)}.workflow-animation-head p{margin:0;color:rgba(255,255,255,.62)}.workflow-percent{flex:0 0 94px;height:94px;display:grid;place-items:center;align-content:center;border:1px solid rgba(255,255,255,.22);border-radius:50%;background:rgba(255,255,255,.08);box-shadow:inset 0 0 0 7px rgba(255,255,255,.025)}.workflow-percent strong{font-size:25px}.workflow-percent span{font-size:9px;letter-spacing:0;color:rgba(255,255,255,.55)}
.workflow-main-track{position:relative;z-index:1;height:13px;margin:34px 17px 14px;border:1px solid rgba(255,255,255,.35);border-radius:999px;background:rgba(255,255,255,.10)}.workflow-main-track>span{position:absolute;inset:0 auto 0 0;border-radius:999px;background:linear-gradient(90deg,#fff,#cfd5ff);box-shadow:0 0 22px rgba(255,255,255,.42);animation:autoWorkflowFill 1.35s cubic-bezier(.2,.8,.2,1) both;transform-origin:left center}.workflow-main-track>i{position:absolute;top:50%;width:34px;height:34px;display:grid;place-items:center;border-radius:50%;background:#fff;color:#111;font-style:normal;box-shadow:0 7px 25px rgba(0,0,0,.35);transform:translate(-50%,-50%);animation:autoWorkflowMove 1.35s cubic-bezier(.2,.8,.2,1) both,workflowMarkerPulse 1.9s ease-in-out 1.35s infinite}.workflow-main-track>i b{font-size:16px;animation:workflowArrow 1s ease-in-out infinite}.workflow-track-labels{position:relative;z-index:1;display:grid;grid-template-columns:repeat(4,1fr);gap:10px;color:rgba(255,255,255,.56);font-size:10px}.workflow-track-labels span:nth-child(2),.workflow-track-labels span:nth-child(3){text-align:center}.workflow-track-labels span:last-child{text-align:right}
.preparation-banner{display:flex;gap:15px;align-items:center;margin:0 0 26px;padding:16px 18px;border:1px solid #e5dfc7;border-radius:18px;background:linear-gradient(135deg,#fffdf5,#fff9e8)}.preparation-icon{width:42px;height:42px;display:grid;place-items:center;flex:0 0 auto;border-radius:50%;background:#111;color:#fff;font-size:20px;animation:preparationClock 2s linear infinite}.preparation-banner strong{display:block;margin-bottom:4px}.preparation-banner p{margin:0;color:var(--muted);font-size:13px;line-height:1.65}
.timeline-heading{display:flex;justify-content:space-between;align-items:end;gap:20px;margin:0 0 16px}.timeline-heading h2{margin:4px 0 0;font-size:24px}.workflow-rule-chip{display:inline-flex;padding:7px 12px;border:1px solid var(--line);border-radius:999px;background:#fff;font-size:11px;color:var(--muted)}
.order-timeline.auto-timeline{position:relative;display:grid;grid-template-columns:repeat(11,minmax(104px,1fr));gap:0;margin:0;padding:0 0 12px;overflow-x:auto;scrollbar-width:thin}.order-timeline.auto-timeline:before{content:"";position:absolute;left:52px;right:52px;top:31px;height:2px;background:#e1e3e8}.order-timeline.auto-timeline li{position:relative;z-index:1;display:block;min-height:196px;padding:0 7px;border:0;border-radius:0;background:transparent;box-shadow:none;animation:autoStepIn .55s ease both;animation-delay:calc(var(--step-order) * .055s)}.order-timeline.auto-timeline li.active{border:0;box-shadow:none;background:transparent;animation:autoStepIn .55s ease both;animation-delay:calc(var(--step-order) * .055s)}.step-node{position:relative;height:64px;display:flex;justify-content:center;align-items:flex-start}.step-node>span{position:relative;z-index:2;width:36px!important;height:36px!important;display:grid!important;place-items:center;margin:13px 0 0;border:2px solid #d6d9df!important;border-radius:50%;background:#fff!important;color:#8c929d!important;font-size:11px!important;font-weight:800;transition:.35s}.step-node>i{display:none}.order-timeline.auto-timeline li.done .step-node>span{border-color:#111!important;background:#111!important;color:#fff!important}.order-timeline.auto-timeline li.done .step-node>span:after{content:"✓";position:absolute;inset:0;display:grid;place-items:center;background:#111;border-radius:50%;font-size:14px}.order-timeline.auto-timeline li.active .step-node>span{border-color:#111!important;background:#fff!important;color:#111!important;box-shadow:0 0 0 7px rgba(17,17,17,.08);animation:activeNodePulse 1.8s ease-in-out infinite}.order-timeline.auto-timeline li.done:not(:last-child) .step-node:after{content:"";position:absolute;left:50%;top:30px;width:100%;height:2px;background:#111;animation:connectorFill .55s ease both;transform-origin:left center}.step-content{min-height:122px;padding:12px 9px;border:1px solid var(--line);border-radius:15px;background:#fff;text-align:center;transition:.25s}.step-content strong{display:block;font-size:12px}.step-content p{min-height:48px;margin:7px 0;color:var(--muted);font-size:10px;line-height:1.55}.step-content small{display:block;color:#989eaa;font-size:9px;line-height:1.4}.order-timeline.auto-timeline li.done .step-content{background:#f7f7f7}.order-timeline.auto-timeline li.active .step-content{border-color:#111;transform:translateY(-3px);box-shadow:0 12px 28px rgba(17,17,17,.10)}.order-timeline.auto-timeline li.active .step-content small{color:#111;font-weight:700}
.workflow-facts{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:16px}.workflow-facts article{display:flex;gap:12px;padding:16px;border:1px solid var(--line);border-radius:18px;background:#fafafa}.workflow-facts article>span{display:grid;place-items:center;width:34px;height:34px;flex:0 0 auto;border-radius:11px;background:#111;color:#fff;font-size:10px}.workflow-facts strong{font-size:12px}.workflow-facts p{margin:4px 0 0;color:var(--muted);font-size:10px;line-height:1.55}
@keyframes workflowShine{0%,55%{transform:translateX(-115%)}80%,100%{transform:translateX(115%)}}
@keyframes autoWorkflowFill{from{transform:scaleX(0)}to{transform:scaleX(1)}}
@keyframes autoWorkflowMove{from{left:0}}
@keyframes workflowMarkerPulse{0%,100%{box-shadow:0 7px 25px rgba(0,0,0,.35),0 0 0 0 rgba(255,255,255,.28)}50%{box-shadow:0 7px 25px rgba(0,0,0,.35),0 0 0 9px rgba(255,255,255,0)}}
@keyframes workflowArrow{0%,100%{transform:translateX(-2px)}50%{transform:translateX(2px)}}
@keyframes preparationClock{to{transform:rotate(360deg)}}
@keyframes autoStepIn{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
@keyframes activeNodePulse{0%,100%{box-shadow:0 0 0 6px rgba(17,17,17,.07)}50%{box-shadow:0 0 0 11px rgba(17,17,17,.02)}}
@keyframes connectorFill{from{transform:scaleX(0)}to{transform:scaleX(1)}}
@media(max-width:1080px){.order-summary.auto-summary{grid-template-columns:repeat(2,minmax(0,1fr))}.workflow-facts{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.order-summary.auto-summary,.workflow-facts{grid-template-columns:1fr}.workflow-animation{padding:20px 16px}.workflow-animation-head{align-items:center}.workflow-percent{width:76px;height:76px;flex-basis:76px}.workflow-percent strong{font-size:20px}.workflow-track-labels{font-size:8px}.timeline-heading{align-items:flex-start;flex-direction:column}.order-timeline.auto-timeline{grid-template-columns:repeat(11,142px)}.step-content p{min-height:44px}}
@media(prefers-reduced-motion:reduce){.workflow-animation:after,.workflow-main-track>span,.workflow-main-track>i,.workflow-main-track>i b,.preparation-icon,.order-timeline.auto-timeline li,.order-timeline.auto-timeline li.active,.order-timeline.auto-timeline li.active .step-node>span{animation:none!important}}


/* Uploaded image banner */
.banner-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;opacity:.34;filter:saturate(.82) contrast(.95)}
.banner-layer[data-banner-layer="image"]:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.94) 0%,rgba(255,255,255,.72) 45%,rgba(255,255,255,.18) 100%)}

/* Retained post-production logistics */
.logistics-heading{margin-top:30px}.order-timeline.logistics-timeline{grid-template-columns:repeat(4,minmax(150px,1fr));overflow:visible}.order-timeline.logistics-timeline:before{left:75px;right:75px}.order-timeline.logistics-timeline li{min-height:186px}.logistics-progress{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:18px}.vehicle-progress{padding:20px;border:1px solid var(--line);border-radius:20px;background:#fff}.progress-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:15px}.progress-head strong{font-size:13px}.progress-head span{font-size:12px;font-weight:800}.progress-track{position:relative;height:10px;margin:0 22px 14px;border-radius:999px;background:#eceff4}.progress-track>span{position:absolute;inset:0 auto 0 0;border-radius:inherit;background:#111;transition:width .5s ease}.progress-track>i{position:absolute;top:50%;font-style:normal;font-size:24px;transform:translate(-50%,-50%) scaleX(-1)}.vehicle-progress p{margin:0;color:var(--muted);font-size:10px}.logistics-note{margin-top:14px;padding:14px 16px;border:1px solid #e6e8ee;border-radius:15px;background:#fafbfc;color:var(--muted);font-size:11px;line-height:1.7}
@media(max-width:720px){.order-timeline.logistics-timeline{grid-template-columns:repeat(4,142px);overflow-x:auto}.logistics-progress{grid-template-columns:1fr}}
.order-summary.auto-summary{grid-template-columns:repeat(auto-fit,minmax(150px,1fr))}

@media(max-width:620px){.order-summary.auto-summary{grid-template-columns:1fr}}


/* Single active Banner controlled by admin v5 */
.banner-hero{background:var(--banner-bg,#fff)}
.banner-hero.banner-no-panel{grid-template-columns:minmax(0,1fr);justify-content:stretch}
.banner-hero.banner-no-panel .banner-copy{width:100%;max-width:1120px}
.banner-layer{display:block!important;background:var(--banner-bg,#fff)}
.banner-layer::after{background:var(--banner-overlay-color,#fff);opacity:var(--banner-overlay-opacity,.72)}
.banner-image,.banner-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;opacity:var(--banner-media-opacity,1);filter:none}
.banner-copy{position:relative;z-index:2}
.banner-copy .eyebrow{color:var(--banner-eyebrow-color,#087f9c)}
.banner-copy h1{color:var(--banner-title-color,#111)}
.banner-copy>p{max-width:660px;color:var(--banner-desc-color,#505765);font-size:18px}
.banner-action{border:1px solid transparent;box-shadow:none;transition:transform .2s,filter .2s,box-shadow .2s}
.banner-action:hover{transform:translateY(-2px);filter:brightness(.96);box-shadow:0 12px 28px rgba(0,0,0,.12)}
.banner-action-primary{color:var(--banner-primary-color,#fff);background:var(--banner-primary-bg,#111)}
.banner-action-secondary{color:var(--banner-secondary-color,#111);border-color:color-mix(in srgb,var(--banner-secondary-color,#111) 22%,transparent);background:var(--banner-secondary-bg,#fff)}
.banner-copy .hero-stats span{color:var(--banner-title-color,#111);background:color-mix(in srgb,var(--banner-bg,#fff) 78%,transparent)}
@supports not (background:color-mix(in srgb,#fff 50%,transparent)){.banner-action-secondary{border-color:rgba(17,17,17,.18)}.banner-copy .hero-stats span{background:rgba(255,255,255,.78)}}
@media(max-width:820px){.banner-hero.banner-no-panel{grid-template-columns:1fr}.banner-copy>p{font-size:16px}}

/* v6 product taxonomy and RGB filters */
.color-filter-section label{display:flex;align-items:center;gap:7px}.filter-color-dot{width:15px;height:15px;border-radius:50%;border:1px solid rgba(0,0,0,.14);box-shadow:inset 0 0 0 2px rgba(255,255,255,.55);flex:0 0 auto}.color-filter-section code{margin-left:auto;font-size:.68rem;color:#8b93a3;background:#f4f6f8;border-radius:5px;padding:2px 5px}.catalog-card img{object-fit:contain;background:#f7f8fa}

/* V9: supermarket map taxonomy dropdown filter */
.store-zone-category-filter {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(520px, 1.6fr);
    gap: 22px;
    margin-bottom: 18px;
    padding: 22px;
    border: 1px solid var(--line) !important;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%) !important;
    box-shadow: 0 18px 50px rgba(23, 37, 61, 0.06);
}

.store-zone-filter-copy {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.store-zone-filter-icon {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 15px;
    color: #ffffff;
    background: #111111;
    font-size: 20px;
    font-weight: 800;
}

.store-zone-filter-copy strong {
    display: block;
    margin: 2px 0 7px;
    color: #111827;
    font-size: 17px;
    line-height: 1.35;
}

.store-zone-filter-copy p {
    max-width: 470px;
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.65;
}

.store-zone-filter-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr)) auto;
    gap: 12px;
    align-items: end;
}

.store-zone-filter-fields label {
    display: grid;
    gap: 7px;
    margin: 0;
}

.store-zone-filter-fields label > span {
    color: #344054;
    font-size: 12px;
    font-weight: 700;
}

.store-zone-filter-fields select {
    width: 100%;
    min-height: 46px;
    padding: 0 38px 0 13px;
    border: 1px solid #d7dde7;
    border-radius: 13px;
    color: #111827;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.store-zone-filter-fields select:hover:not(:disabled),
.store-zone-filter-fields select:focus {
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

.store-zone-filter-fields select:disabled {
    color: #98a2b3;
    background-color: #f2f4f7;
    cursor: not-allowed;
}

.store-zone-filter-reset {
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid #d7dde7;
    border-radius: 13px;
    color: #344054;
    background: #ffffff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.18s ease;
}

.store-zone-filter-reset:hover {
    border-color: #111827;
    color: #ffffff;
    background: #111827;
}

.store-zone-filter-status {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
}

.store-zone-filter-status span {
    overflow: hidden;
    color: #1d2939;
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-zone-filter-status em {
    flex: 0 0 auto;
    color: #667085;
    font-size: 12px;
    font-style: normal;
}

.store-point.category-match {
    position: relative;
    z-index: 2;
    border-color: #2563eb;
    color: #0f3c96;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.11), 0 10px 22px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}

.store-point.category-match span {
    color: #ffffff;
    border-color: #2563eb;
    background: #2563eb;
}

.store-point.category-muted {
    opacity: 0.32;
    filter: grayscale(0.65);
}

.store-point.category-muted:hover {
    opacity: 0.72;
    filter: none;
}

.store-point.active.category-match,
.store-point.active {
    opacity: 1;
    filter: none;
}

@media (max-width: 1180px) {
    .store-zone-category-filter {
        grid-template-columns: 1fr;
    }

    .store-zone-filter-status {
        grid-column: 1;
    }
}

@media (max-width: 820px) {
    .store-zone-filter-fields {
        grid-template-columns: 1fr 1fr;
    }

    .store-zone-filter-reset {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .store-zone-category-filter {
        padding: 16px;
        border-radius: 18px;
    }

    .store-zone-filter-fields {
        grid-template-columns: 1fr;
    }

    .store-zone-filter-status {
        align-items: flex-start;
        flex-direction: column;
    }

    .store-zone-filter-status span {
        max-width: 100%;
        white-space: normal;
    }
}

/* V10: products are bound to supermarket zones in admin */
.store-zone-show-all{justify-self:start;min-height:42px;padding:0 16px;border:1px solid #d7dce5;border-radius:12px;color:#2f3a4d;background:#fff;font-size:13px;font-weight:800;transition:.18s}.store-zone-show-all:hover{border-color:#111827;color:#fff;background:#111827;transform:translateY(-1px)}
.store-point.active{border-color:#111827!important;color:#fff!important;background:#111827!important;box-shadow:0 12px 28px rgba(17,24,39,.2)!important;transform:translateY(-2px)}.store-point.active span{border-color:#fff!important;color:#111827!important;background:#fff!important}.store-point.active strong,.store-point.active small{color:#fff!important}
.store-zone-info p{color:#657084;line-height:1.65}.store-zone-info p br{display:block;content:"";margin-top:6px}


/* v11 editable product detail content */
.product-detail-copy p{margin:0 0 14px;line-height:1.8;color:#586579}.product-spec-table{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:22px}.product-spec-table>div{display:grid;grid-template-columns:110px minmax(0,1fr);gap:12px;padding:12px 14px;border:1px solid #e5e9f0;border-radius:12px;background:#fafbfc}.product-spec-table strong{font-size:13px;color:#344057}.product-spec-table span{font-size:13px;color:#68758a}.catalog-card .product-badge{position:absolute;top:12px;left:12px;z-index:2;padding:5px 9px;border-radius:999px;background:#111827;color:#fff;font-size:11px;font-weight:800}
@media(max-width:700px){.product-spec-table{grid-template-columns:1fr}.product-spec-table>div{grid-template-columns:95px minmax(0,1fr)}}


/* v12 categorized product documents */
.download-category-groups{display:grid;gap:14px}.download-category-group{overflow:hidden;border:1px solid #e5e9f0;border-radius:14px;background:#fff}.download-category-group>header{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:11px 13px;border-bottom:1px solid #edf0f4;background:#f8f9fb}.download-category-group>header span{font-size:12px;font-weight:800;color:#344057}.download-category-group>header em{font-size:10px;color:#8792a5;font-style:normal}.download-category-group .download-list{display:grid;gap:0}.download-category-group .download-card{border:0;border-bottom:1px solid #edf0f4;border-radius:0}.download-category-group .download-card:last-child{border-bottom:0}.download-icon{min-width:42px;padding:0 5px;font-size:9px;text-align:center}

/* v13 rich content output */
.rich-content{color:#3f4a5e;font-size:15px;line-height:1.9;word-break:break-word}
.rich-content>*:first-child{margin-top:0}.rich-content>*:last-child{margin-bottom:0}
.rich-content p{margin:0 0 18px}.rich-content h2{margin:34px 0 16px;color:#172033;font-size:clamp(25px,3vw,34px);line-height:1.35}.rich-content h3{margin:28px 0 14px;color:#202b3d;font-size:23px;line-height:1.4}.rich-content h4{margin:24px 0 12px;color:#273247;font-size:19px;line-height:1.45}
.rich-content ul,.rich-content ol{margin:0 0 20px;padding-left:28px}.rich-content li{margin:8px 0}.rich-content blockquote{margin:24px 0;padding:18px 22px;border-left:4px solid #5b5cf0;border-radius:0 14px 14px 0;background:#f5f6ff;color:#59647a}.rich-content a{color:#4f52d7;text-decoration:underline;text-underline-offset:3px}.rich-content hr{margin:32px 0;border:0;border-top:1px solid #dfe4ec}
.rich-content .rich-image{clear:both;margin:30px 0;padding:0;text-align:center}.rich-content .rich-image.align-left{text-align:left!important}.rich-content .rich-image.align-center{text-align:center!important}.rich-content .rich-image.align-right{text-align:right!important}.rich-content .rich-image img,.rich-content>img{display:inline-block;max-width:100%;height:auto;border-radius:16px;background:#f4f6f9;box-shadow:0 14px 36px rgba(23,32,51,.12)}.rich-content .rich-image figcaption{margin-top:11px;color:#8a95a8;font-size:12px;line-height:1.6;text-align:center}
.rich-content table{display:table;width:100%;margin:26px 0;border-collapse:collapse;border-spacing:0;background:#fff}.rich-content th,.rich-content td{padding:13px 15px;border:1px solid #dfe4ec;text-align:left;vertical-align:top}.rich-content th{background:#f4f6f9;color:#273247;font-weight:800}.compact-rich-content{font-size:14px;line-height:1.85}.compact-rich-content h2{font-size:24px}.compact-rich-content h3{font-size:20px}
@media(max-width:720px){.rich-content{font-size:14px}.rich-content h2{font-size:25px}.rich-content h3{font-size:20px}.rich-content table{display:block;overflow-x:auto;white-space:nowrap}.rich-content .rich-image{margin:22px 0}.rich-content .rich-image img{width:100%!important}}

@media (max-width: 620px) {
    .panel-card { max-width: 52%; padding: 11px 14px; font-size: min(var(--panel-card-font-size, 16px), 14px); }
    .panel-pos-top-left { top: 32px; left: 22px; }
    .panel-pos-top-right { top: 82px; right: 20px; }
    .panel-pos-bottom-left { bottom: 32px; left: 28px; }
    .panel-pos-bottom-right { right: 22px; bottom: 24px; }
}


/* v18 Banner right visual uploaded image */
.shelf-visual.has-image{display:block;overflow:hidden;padding:0;aspect-ratio:4/3;background:var(--panel-visual-bg,#f5f6f8)}
.shelf-visual.has-image img{display:block;width:100%;height:100%;border-radius:inherit}
.shelf-visual.has-image span{display:none}


/* v20 uploaded case / solution / video cover images */
.project-cover.has-uploaded-cover,.project-hero-visual.has-uploaded-cover{background-position:center;background-repeat:no-repeat;background-size:cover}
.project-cover.has-uploaded-cover::before,.project-hero-visual.has-uploaded-cover::before{inset:0;width:auto;height:auto;border:0;border-radius:0;background:linear-gradient(180deg,rgba(8,15,29,.08) 15%,rgba(8,15,29,.72) 100%);transform:none}
.project-cover.has-uploaded-cover::after,.project-hero-visual.has-uploaded-cover::after{right:-70px;bottom:-90px;width:220px;height:220px;background:rgba(255,255,255,.12)}


/* v25 Home product series covers */
.home-series-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin-top:30px}.home-series-card{overflow:hidden;border-radius:26px!important;background:#fff;box-shadow:0 18px 48px rgba(21,31,50,.08);transition:transform .28s ease,box-shadow .28s ease}.home-series-card:hover{transform:translateY(-7px);box-shadow:0 25px 58px rgba(21,31,50,.13)}
.home-series-cover{position:relative;display:block;aspect-ratio:16/10;overflow:hidden;background:linear-gradient(135deg,#eef2f6,#dfe6ed);text-decoration:none}.home-series-cover img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .55s ease}.home-series-card:hover .home-series-cover img{transform:scale(1.045)}.home-series-cover:after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,transparent 48%,rgba(10,17,28,.48))}.home-series-cover em{position:absolute;z-index:2;right:17px;bottom:15px;padding:7px 11px;border:1px solid rgba(255,255,255,.5);border-radius:999px;background:rgba(10,17,28,.48);backdrop-filter:blur(8px);color:#fff;font-size:12px;font-style:normal;font-weight:700}.home-series-cover.is-empty{display:grid;place-items:center}.home-series-cover.is-empty>span{font-size:54px;font-weight:900;color:#7b8797}.home-series-cover.is-empty:after{background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(38,51,69,.16))}
.home-series-content{padding:22px 22px 24px}.home-series-content>div span{display:block;margin-bottom:6px;color:#7b8495;font-size:10px;font-weight:800;letter-spacing:.14em}.home-series-content h3{margin:0;color:#172033;font-size:22px;font-weight:800}.home-series-content p{min-height:42px;margin:12px 0 17px;color:#687386;font-size:13px;line-height:1.65}.home-series-content>a{display:inline-flex;align-items:center;gap:8px;color:#252bb7;font-size:13px;font-weight:800;text-decoration:none}.home-series-content>a b{font-size:16px;transition:transform .2s ease}.home-series-content>a:hover b{transform:translateX(4px)}
@media(max-width:980px){.home-series-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:640px){.home-series-grid{grid-template-columns:1fr;gap:18px}.home-series-content h3{font-size:20px}}

/* v26 Home product series card redesign */
.home-series-grid{gap:20px;margin-top:34px}
.home-series-card{position:relative;overflow:hidden;border:1px solid rgba(32,44,66,.09)!important;border-radius:18px!important;background:#fff;box-shadow:0 10px 30px rgba(22,32,51,.055);transition:transform .26s ease,box-shadow .26s ease,border-color .26s ease}
.home-series-card:hover{transform:translateY(-5px);border-color:rgba(63,72,190,.2)!important;box-shadow:0 20px 42px rgba(22,32,51,.10)}
.home-series-cover{aspect-ratio:16/10;background:#edf1f5}
.home-series-cover img{filter:saturate(.92);transition:transform .55s ease,filter .35s ease}.home-series-card:hover .home-series-cover img{transform:scale(1.035);filter:saturate(1)}
.home-series-cover:after{background:linear-gradient(180deg,rgba(9,16,28,.03) 32%,rgba(9,16,28,.58) 100%)}
.home-series-index{position:absolute!important;z-index:3;left:15px;top:15px;display:grid!important;place-items:center;width:34px;height:34px;border:1px solid rgba(255,255,255,.56);border-radius:10px;background:rgba(14,22,36,.34);backdrop-filter:blur(9px);color:#fff!important;font-size:11px!important;font-weight:900!important;letter-spacing:.06em}
.home-series-cover em{right:14px;bottom:13px;padding:6px 10px;border:0;border-radius:8px;background:rgba(10,18,30,.62);font-size:11px;letter-spacing:.02em}
.home-series-content{position:relative;padding:20px 20px 21px}.home-series-content:before{position:absolute;left:20px;top:0;width:38px;height:3px;border-radius:3px;background:linear-gradient(90deg,#3e46c8,#8087f1);content:""}
.home-series-title>span{margin-bottom:7px;color:#858fa0;font-size:9px;letter-spacing:.16em}.home-series-content h3{font-size:20px;letter-spacing:-.015em}
.home-series-content p{min-height:40px;margin:10px 0 16px;color:#697487;font-size:12px;line-height:1.65}
.home-series-content>a{width:100%;display:flex;justify-content:space-between;padding-top:14px;border-top:1px solid #edf0f4;color:#3038b2;font-size:12px}.home-series-content>a b{width:26px;height:26px;display:grid;place-items:center;border-radius:8px;background:#f0f1ff;font-size:14px}.home-series-content>a:hover b{transform:translateX(3px);background:#dee1ff}
.home-series-cover.is-empty>span:not(.home-series-index){font-size:46px;color:#7c8798}.home-series-cover.is-empty:before{position:absolute;inset:20%;border:1px dashed rgba(75,87,105,.24);border-radius:18px;content:""}
@media(max-width:980px){.home-series-grid{gap:17px}}@media(max-width:640px){.home-series-grid{gap:15px;margin-top:24px}.home-series-card{border-radius:15px!important}.home-series-content{padding:18px}.home-series-content:before{left:18px}.home-series-content h3{font-size:19px}}


/* v27 slower order progress animation: start at 1% and glide to the live value */
.workflow-main-track>span,
.workflow-main-track>i,
.progress-track>span,
.progress-track>i{
    animation:none!important;
    transition:none!important;
    will-change:width,left;
}
.workflow-main-track.is-animating:after,
.progress-track.is-animating:after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    width:42px;
    border-radius:999px;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.72),transparent);
    transform:translateX(-60px);
    animation:orderProgressShimmer 1.9s linear infinite;
    pointer-events:none;
}
.progress-track.is-animating:after{width:28px;opacity:.78}
.workflow-percent strong,
.progress-head [data-logistics-progress-value]{font-variant-numeric:tabular-nums}
@keyframes orderProgressShimmer{
    from{left:0;transform:translateX(-60px)}
    to{left:100%;transform:translateX(18px)}
}
@media(prefers-reduced-motion:reduce){
    .workflow-main-track.is-animating:after,
    .progress-track.is-animating:after{display:none}
}


/* v31 case gallery rich content and editable configuration card */
.project-gallery-content {
    display: grid;
    gap: 18px;
    padding: 0;
}
.project-gallery-content > p:empty { display: none; }
.project-gallery-content figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #f8fafc;
}
.project-gallery-content figure img,
.project-gallery-content > img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: contain;
    background: #f8fafc;
}
.project-gallery-content figcaption {
    padding: 12px 16px;
    color: var(--muted);
    background: #ffffff;
    font-size: 14px;
    text-align: center;
}
.cta-card .cta-eyebrow-pill {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 999px;
    color: #111111 !important;
    background: #ffffff;
    font-weight: 800;
    line-height: 1.2;
}
.cta-card p { color: rgba(255, 255, 255, .82); }
.cta-config-list {
    display: grid;
    gap: 9px;
    margin: 2px 0 18px;
    padding: 0;
    list-style: none;
}
.cta-config-list li {
    position: relative;
    padding: 10px 12px 10px 34px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    font-size: 14px;
    line-height: 1.55;
}
.cta-config-list li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 10px;
    color: #ffffff;
    font-weight: 900;
}
@media (min-width: 900px) {
    .project-gallery-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .project-gallery-content > h2,
    .project-gallery-content > h3,
    .project-gallery-content > h4,
    .project-gallery-content > p,
    .project-gallery-content > ul,
    .project-gallery-content > ol,
    .project-gallery-content > table,
    .project-gallery-content > blockquote,
    .project-gallery-content > hr {
        grid-column: 1 / -1;
    }
    .project-gallery-content figure[style*="width:100%"],
    .project-gallery-content figure[style*="width: 100%"] { grid-column: 1 / -1; }
}


/* v32 project image gallery: three horizontal cards matching the admin preview */
.project-gallery-section {
    gap: 22px;
}
.project-gallery-section > h2 {
    margin: 0;
    font-size: clamp(30px, 3.3vw, 48px);
    line-height: 1.12;
    letter-spacing: -.04em;
}
.project-gallery-content,
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    counter-reset: project-gallery-card;
}
.project-gallery-content > h2,
.project-gallery-content > h3,
.project-gallery-content > h4,
.project-gallery-content > p,
.project-gallery-content > ul,
.project-gallery-content > ol,
.project-gallery-content > table,
.project-gallery-content > blockquote,
.project-gallery-content > hr {
    grid-column: 1 / -1;
}
.project-gallery-content > p:empty { display: none; }
.project-gallery-content figure,
.project-gallery-grid .gallery-placeholder {
    counter-increment: project-gallery-card;
    position: relative;
    width: 100%;
    aspect-ratio: 2.08 / 1;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.30);
    border-radius: 22px;
    background: linear-gradient(135deg, #27c79e 0%, #36b6ed 62%, #55768b 100%);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}
.project-gallery-content figure::before,
.project-gallery-grid .gallery-placeholder::before {
    content: counter(project-gallery-card, decimal-leading-zero);
    position: absolute;
    z-index: 5;
    left: 16px;
    bottom: 49px;
    display: inline-grid;
    place-items: center;
    min-width: 34px;
    height: 28px;
    padding: 0 9px;
    border: 1px solid rgba(255,255,255,.64);
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
}
.project-gallery-content figure::after,
.project-gallery-grid .gallery-placeholder::after {
    content: '';
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(15,23,42,0) 30%, rgba(15,23,42,.66) 100%);
}
.project-gallery-content figure img,
.project-gallery-content > img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    background: transparent;
    transition: transform .45s ease;
}
.project-gallery-content figure:hover img { transform: scale(1.035); }
.project-gallery-content figcaption {
    position: absolute;
    z-index: 5;
    left: 16px;
    right: 16px;
    bottom: 14px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: #fff;
    background: transparent;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(15,23,42,.46);
}
.project-gallery-grid .gallery-placeholder > span {
    display: none;
}
.project-gallery-grid .gallery-placeholder > strong {
    position: absolute;
    z-index: 5;
    left: 16px;
    right: 16px;
    bottom: 14px;
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
}
@media (max-width: 980px) {
    .project-gallery-content,
    .project-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .project-gallery-content,
    .project-gallery-grid { grid-template-columns: 1fr; gap: 12px; }
    .project-gallery-section > h2 { font-size: 32px; }
    .project-gallery-content figure,
    .project-gallery-grid .gallery-placeholder { border-radius: 18px; }
}


/* v32 gallery legacy-placeholder reset */
.project-gallery-grid .gallery-placeholder {
    display: block;
    padding: 0;
}
.project-gallery-grid .gallery-placeholder::before {
    inset: auto auto 49px 16px;
    width: auto;
    height: 28px;
    transform: none;
}
.project-gallery-grid .gallery-placeholder::after {
    inset: 0;
    width: auto;
    height: auto;
    border-radius: 0;
}
.project-gallery-content > img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 2.08 / 1;
    object-fit: cover;
    border-radius: 22px;
}

/* v33: product.php reads product series from data/catalog.php */
.product-series-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
}
.product-series-heading-copy { min-width: 0; }
.product-series-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}
.product-series-mini-cover {
    width: 116px;
    aspect-ratio: 16 / 10;
    border: 1px solid var(--line);
    border-radius: 16px;
    object-fit: cover;
    background: #f7f7f7;
}
.filter-btn small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    margin-left: 7px;
    padding: 0 6px;
    border-radius: 999px;
    color: inherit;
    background: rgba(17, 17, 17, .07);
    font-size: 11px;
    font-weight: 800;
}
.filter-btn.active small,
.filter-btn:hover small { background: rgba(255, 255, 255, .2); }
.product-thumb.product-thumb-real {
    display: block;
    overflow: hidden;
    height: auto;
    aspect-ratio: 4 / 3;
    padding: 0;
    border: 1px solid var(--line);
    background: #f7f7f7 !important;
}
.product-thumb.product-thumb-real img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.product-series-product-card:hover .product-thumb-real img { transform: scale(1.035); }
.product-series-product-card h3 a {
    color: var(--ink);
    background: transparent !important;
}
.product-model-code {
    display: block;
    margin: -2px 0 9px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.product-card-detail-link { margin-top: auto !important; }
.product-series-empty {
    padding: 26px;
    border: 1px dashed var(--line);
    border-radius: 20px;
    background: #fafafa;
    text-align: center;
}
.product-series-empty p { margin: 7px 0 0; color: var(--muted); }

/* v33: prevent case sidebar cards from being stretched by long project analysis */
.case-solution-detail-page .detail-content-grid,
.case-solution-detail-page .project-detail-grid {
    align-items: start;
}
.case-solution-detail-page .detail-main-card {
    min-width: 0;
    align-self: start;
    height: auto;
}
.case-solution-detail-page .detail-side-stack {
    display: flex;
    flex-direction: column;
    align-self: start;
    align-items: stretch;
    height: max-content;
    min-width: 0;
}
.case-solution-detail-page .detail-side-card {
    flex: 0 0 auto;
    align-self: stretch;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden;
}
.case-solution-detail-page .detail-side-card h2,
.case-solution-detail-page .detail-side-card p,
.case-solution-detail-page .detail-side-card li,
.case-solution-detail-page .detail-side-card dd {
    overflow-wrap: anywhere;
    word-break: break-word;
}
.case-solution-detail-page .detail-side-card .btn { white-space: normal; }

@media (max-width: 900px) {
    .product-series-head { grid-template-columns: minmax(0, 1fr) auto; }
    .product-series-mini-cover { display: none; }
}
@media (max-width: 620px) {
    .product-series-head { grid-template-columns: 1fr; }
    .product-series-head > span { width: max-content; }
}


/* v34 manual navigation submenu */
.nav-parent-row{display:flex;align-items:center;gap:2px}.nav-parent-row>a{display:inline-flex;align-items:center;min-height:40px;padding:0 8px 0 12px;color:rgba(20,33,61,.82);border-radius:999px;font-size:14px}.nav-parent-row>a:hover{color:#111;background:#f5f5f5}.submenu-toggle{display:grid;place-items:center;width:30px;height:30px;padding:0;border:0;border-radius:50%;color:var(--muted);background:transparent;font-size:16px;cursor:pointer;transition:.18s ease}.submenu-toggle:hover,.has-submenu.is-open .submenu-toggle{color:#111;background:#f3f4f6}.has-submenu.is-open .submenu-toggle{transform:rotate(180deg)}.submenu-menu{min-width:286px;padding:10px;gap:6px}.submenu-link{display:grid!important;grid-template-columns:38px minmax(0,1fr);align-items:center;gap:11px;min-height:58px;padding:9px 10px!important;color:#293044!important;background:#fff!important;border:1px solid transparent;border-radius:13px!important}.submenu-link:hover,.submenu-link.active-link{border-color:#d9dee8;color:#111!important;background:#f7f8fa!important}.submenu-link>i{display:grid;place-items:center;width:38px;height:38px;border-radius:11px;color:#fff;background:#111;font-style:normal;font-size:14px;font-weight:700}.submenu-link>b{display:block;min-width:0;font-size:14px;font-weight:650;line-height:1.35}.submenu-link small{display:block;margin-top:3px;padding:0!important;color:#7a8292!important;background:transparent!important;font-size:11px;line-height:1.4;white-space:normal}.has-submenu.is-open>.dropdown{opacity:1;transform:translateY(0);pointer-events:auto}
@media(max-width:820px){.nav-parent-row{width:100%}.nav-parent-row>a{flex:1;justify-content:flex-start;border-radius:14px}.submenu-toggle{width:40px;height:40px;border-radius:12px;background:#f5f6f8}.has-submenu>.submenu-menu{display:none}.has-submenu.is-open>.submenu-menu{display:grid}.submenu-menu{padding:8px;margin:5px 0 10px 12px;border-radius:16px}.submenu-link{min-height:54px}.nav-item:hover .submenu-menu:not(.mega-menu),.nav-item:focus-within .submenu-menu:not(.mega-menu){display:none}.nav-item.is-open .submenu-menu{display:grid!important}}

/* v35 editable category banners */
.category-page-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--category-banner-text, #172033);
    background: var(--category-banner-bg, #f4f7fb);
}
.category-page-banner::before,
.category-page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.category-page-banner::before {
    z-index: -2;
    background-image: var(--category-banner-image, none);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    opacity: var(--category-banner-image-opacity, .42);
    transform: scale(1.01);
}
.category-page-banner::after {
    z-index: -1;
    background: linear-gradient(90deg, var(--category-banner-overlay, #fff) 0%, var(--category-banner-overlay, #fff) 48%, transparent 100%);
    opacity: var(--category-banner-overlay-opacity, .72);
}
.category-page-banner > * { position: relative; z-index: 1; }
.category-page-banner h1,
.category-page-banner p,
.category-page-banner .eyebrow { color: var(--category-banner-text, #172033); }
.category-page-banner .eyebrow { opacity: .72; }
.category-page-banner > div:first-child { max-width: 820px; }
.category-page-banner .page-summary {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(255,255,255,.76);
}
@media (max-width: 820px) {
    .category-page-banner::before { background-position: 66% center; opacity: calc(var(--category-banner-image-opacity, .42) * .7); }
    .category-page-banner::after { background: var(--category-banner-overlay, #fff); opacity: min(.82, var(--category-banner-overlay-opacity, .72)); }
}


/* v36 category banner SVG loading fix */
.category-page-banner::before {
    image-rendering: auto;
    background-origin: border-box;
    background-clip: border-box;
}


/* v37 category Banner upload-to-frontend rendering fix */
.category-page-banner::before { display: none !important; }
.category-page-banner > .category-banner-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: var(--category-banner-image-opacity, .42);
}
.category-page-banner > .category-banner-media img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center right;
    transform: scale(1.01);
}
.category-page-banner::after { z-index: 1; }
.category-page-banner > :not(.category-banner-media) {
    position: relative;
    z-index: 2;
}
.category-page-banner.is-banner-image-error > .category-banner-media { display: none; }
@media (max-width: 820px) {
    .category-page-banner > .category-banner-media { opacity: calc(var(--category-banner-image-opacity, .42) * .72); }
    .category-page-banner > .category-banner-media img { object-position: 66% center; }
}


/* v38 category Banner full-bleed image/video */
.category-page-banner{
    width:100vw;
    max-width:none;
    min-height:var(--category-banner-min-height,calc(100svh - 74px));
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    box-sizing:border-box;
    align-content:center;
}
.category-page-banner.compact-hero{min-height:var(--category-banner-min-height,calc(100svh - 74px));}
.category-page-banner>.category-banner-media{inset:0;width:100%;height:100%;opacity:var(--category-banner-image-opacity,.72);background:var(--category-banner-bg,#f4f7fb)}
.category-page-banner>.category-banner-media img,.category-page-banner>.category-banner-media video{display:block;width:100%;height:100%;max-width:none;object-fit:cover;object-position:center center;transform:none}
.category-page-banner>.category-banner-video-media video{background:var(--category-banner-bg,#f4f7fb)}
.category-page-banner::after{background:linear-gradient(90deg,var(--category-banner-overlay,#fff) 0%,var(--category-banner-overlay,#fff) 34%,color-mix(in srgb,var(--category-banner-overlay,#fff) 25%,transparent) 62%,transparent 100%)}
@supports not (background:color-mix(in srgb,#fff 25%,transparent)){.category-page-banner::after{background:linear-gradient(90deg,var(--category-banner-overlay,#fff) 0%,var(--category-banner-overlay,#fff) 38%,transparent 76%)}}
@media(max-width:820px){.category-page-banner{min-height:max(620px,var(--category-banner-min-height,620px));}.category-page-banner>.category-banner-media img,.category-page-banner>.category-banner-media video{object-position:center}.category-page-banner::after{background:var(--category-banner-overlay,#fff);opacity:min(.78,var(--category-banner-overlay-opacity,.72))}}

/* v39 category Banner media full-width clipping fix */
.category-page-banner > .category-banner-media {
    /* The media div is the first child and was accidentally limited by
       `.category-page-banner > div:first-child { max-width: 820px; }`. */
    max-width: none !important;
    min-width: 100% !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
}
.category-page-banner > .category-banner-media img,
.category-page-banner > .category-banner-media video {
    width: 100% !important;
    min-width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
}
.category-page-banner > div:first-child:not(.category-banner-media) {
    max-width: 820px;
}


/* v40 category Banner custom desktop/mobile height */
.category-page-banner,.category-page-banner.compact-hero{min-height:var(--category-banner-min-height,calc(100svh - 74px));}
@media(max-width:820px){.category-page-banner,.category-page-banner.compact-hero{min-height:var(--category-banner-mobile-height,620px);}}

/* v41 About Us single-page and homepage managed media */
.managed-about-home { overflow: hidden; }
.managed-about-grid,
.about-single-managed-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: clamp(32px, 5vw, 76px);
    align-items: center;
}
.about-managed-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 360px;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(145deg, #f2f5f8, #e4ecf1);
    border: 1px solid rgba(17, 24, 39, .08);
    box-shadow: 0 30px 80px rgba(36, 50, 65, .14);
}
.about-managed-media img,
.about-managed-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.about-managed-media video { background: #101418; }
.about-managed-media.is-empty {
    display: grid;
    place-content: center;
    text-align: center;
    color: #5e6876;
}
.about-managed-media.is-empty span { font-size: clamp(28px, 4vw, 54px); font-weight: 800; letter-spacing: .08em; }
.about-managed-media.is-empty small { margin-top: 8px; font-size: 14px; }
.about-media-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 9px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(14, 19, 25, .72);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 700;
}
.managed-about-copy > p,
.about-single-managed-copy .about-single-lead {
    margin: 0;
    color: #505b68;
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.9;
}
.managed-about-features { margin-top: 26px; }
.managed-about-actions,
.about-single-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.about-single-managed { background: #f7f9fb; }
.about-single-managed-copy .eyebrow { display: inline-flex; margin-bottom: 14px; }
.about-single-managed-copy h2 { margin: 0; font-size: clamp(36px, 5vw, 68px); line-height: 1.04; letter-spacing: -.045em; }
.about-single-managed-copy h3 { margin: 18px 0 0; font-size: clamp(22px, 2.4vw, 34px); line-height: 1.3; color: #27313d; }
.about-single-managed-copy .about-single-lead { margin-top: 22px; }
.about-single-rich { margin-top: 22px; color: #4e5967; }
.about-single-rich p { line-height: 1.9; }
.about-single-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}
.about-single-stats article {
    padding: 24px 18px;
    border: 1px solid rgba(17, 24, 39, .09);
    border-radius: 20px;
    background: #fff;
    text-align: center;
}
.about-single-stats strong { display: block; color: #10151b; font-size: clamp(25px, 3vw, 40px); line-height: 1; }
.about-single-stats span { display: block; margin-top: 9px; color: #68717e; font-size: 13px; }
@media (max-width: 980px) {
    .managed-about-grid,
    .about-single-managed-grid { grid-template-columns: 1fr; }
    .about-managed-media { min-height: 300px; }
    .about-single-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .about-managed-media { min-height: 230px; border-radius: 22px; }
    .about-single-stats { grid-template-columns: 1fr 1fr; }
    .managed-about-actions .btn,
    .about-single-actions .btn { width: 100%; justify-content: center; }
}

/* v42 About page managed media overflow/overlay fix */
.about-page .about-single-managed {
    position: relative;
    z-index: 1;
    isolation: isolate;
    overflow: hidden;
}
.about-page .about-single-managed-grid {
    position: relative;
    z-index: 1;
    min-width: 0;
    align-items: start;
}
.about-page .about-single-managed-grid > * {
    min-width: 0;
    max-width: 100%;
}
.about-page .about-managed-media,
.about-page figure.about-managed-media,
.about-page .about-single-managed-media {
    position: relative !important;
    inset: auto !important;
    z-index: 1;
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: 560px;
    margin: 0 !important;
    transform: none !important;
    overflow: hidden;
    contain: layout paint;
    box-sizing: border-box;
}
.about-page .about-managed-media img,
.about-page .about-managed-media video {
    position: relative !important;
    inset: auto !important;
    display: block;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 560px;
    margin: 0 !important;
    transform: none !important;
    object-fit: cover;
    object-position: center;
}
.about-page .about-single-managed-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    max-width: 100%;
}
.about-page .about-single-managed-copy img,
.about-page .about-single-rich img {
    max-width: 100%;
    height: auto;
}
.about-page .about-category-page {
    position: relative;
    z-index: 2;
    background: #fff;
}
@media (max-width: 980px) {
    .about-page .about-managed-media,
    .about-page figure.about-managed-media,
    .about-page .about-single-managed-media,
    .about-page .about-managed-media img,
    .about-page .about-managed-media video {
        max-height: 460px;
    }
}
@media (max-width: 600px) {
    .about-page .about-managed-media,
    .about-page figure.about-managed-media,
    .about-page .about-single-managed-media,
    .about-page .about-managed-media img,
    .about-page .about-managed-media video {
        max-height: 340px;
    }
}

/* v44 homepage case / solution two-row carousel */
.home-showcase-section {
    position: relative;
    overflow: hidden;
}
.home-showcase-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}
.home-showcase-heading .section-title {
    max-width: 760px;
    margin-bottom: 0;
}
.home-showcase-heading .section-title p {
    max-width: 680px;
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.75;
}
.home-carousel-toolbar {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 14px;
}
.home-carousel-toolbar > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.home-carousel-toolbar > a:hover {
    transform: translateY(-2px);
    border-color: #cfd6df;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .08);
}
.home-carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 10px 28px rgba(20,33,61,.07);
}
.home-carousel-controls button {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f5f7fa;
    color: #111827;
    font-size: 18px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.home-carousel-controls button:hover:not(:disabled) {
    background: #111827;
    color: #fff;
    transform: translateY(-1px);
}
.home-carousel-controls button:disabled {
    opacity: .35;
    cursor: default;
}
.home-carousel-controls span {
    min-width: 54px;
    color: #667085;
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    text-align: center;
}
.home-carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.home-carousel-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}
.home-carousel-section-ready .home-carousel-track,
.home-showcase-section.is-carousel-ready .home-carousel-track {
    display: flex;
    gap: 0;
    transition: transform .62s cubic-bezier(.22,.72,.22,1);
    will-change: transform;
}
.home-carousel-page {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(var(--carousel-cols, 3), minmax(0,1fr));
    grid-template-rows: repeat(2, minmax(0,1fr));
    gap: 18px;
    min-width: 0;
}
.home-carousel-item {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(214,220,229,.92);
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 14px 42px rgba(17,24,39,.07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.home-carousel-item:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: 0 22px 52px rgba(17,24,39,.12);
}
.home-showcase-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(17,24,39,.92), rgba(39,89,141,.78), rgba(18,167,137,.72)),
        repeating-linear-gradient(90deg, transparent 0 20px, rgba(255,255,255,.13) 20px 22px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    text-decoration: none;
}
.home-solution-slide .home-showcase-cover {
    background:
        linear-gradient(135deg, rgba(25,35,55,.95), rgba(88,70,165,.82), rgba(15,143,181,.75)),
        repeating-linear-gradient(135deg, transparent 0 22px, rgba(255,255,255,.12) 22px 24px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-showcase-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,14,26,.04), rgba(7,14,26,.58));
}
.home-showcase-cover span,
.home-showcase-cover em {
    position: absolute;
    z-index: 1;
}
.home-showcase-cover span {
    left: 16px;
    bottom: 15px;
    max-width: calc(100% - 76px);
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 999px;
    background: rgba(15,23,42,.26);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-showcase-cover em {
    top: 14px;
    right: 15px;
    color: rgba(255,255,255,.92);
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .06em;
}
.home-showcase-card-body {
    display: grid;
    align-content: start;
    gap: 9px;
    padding: 18px 18px 17px;
}
.home-showcase-card-body small {
    color: #667085;
    font-size: 12px;
    line-height: 1.5;
}
.home-showcase-card-body h3 {
    margin: 0;
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.35;
}
.home-showcase-card-body h3 a {
    color: #111827;
    text-decoration: none;
}
.home-showcase-card-body p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 3.2em;
    margin: 0;
    color: #667085;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.home-showcase-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    margin-top: 2px;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}
.home-showcase-detail b { transition: transform .2s ease; }
.home-showcase-detail:hover b { transform: translateX(3px); }
.home-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 18px;
    margin-top: 20px;
}
.home-carousel-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}
.home-carousel-dots button.is-active {
    width: 28px;
    background: #111827;
}
@media (max-width: 900px) {
    .home-showcase-heading {
        align-items: flex-start;
        flex-direction: column;
    }
    .home-carousel-toolbar {
        justify-content: space-between;
        width: 100%;
    }
}
@media (max-width: 720px) {
    .home-showcase-section { padding-left: 14px; padding-right: 14px; }
    .home-carousel-page { gap: 10px; }
    .home-carousel-track { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
    .home-carousel-toolbar > a { min-height: 40px; padding: 0 13px; font-size: 13px; }
    .home-carousel-controls { gap: 4px; }
    .home-carousel-controls button { width: 34px; height: 34px; }
    .home-carousel-controls span { min-width: 46px; font-size: 12px; }
    .home-carousel-item { border-radius: 17px; }
    .home-showcase-cover { aspect-ratio: 4 / 3; }
    .home-showcase-cover span { left: 10px; bottom: 9px; max-width: calc(100% - 46px); padding: 4px 7px; font-size: 10px; }
    .home-showcase-cover em { top: 9px; right: 9px; font-size: 16px; }
    .home-showcase-card-body { gap: 6px; padding: 12px 11px 12px; }
    .home-showcase-card-body small { font-size: 10px; }
    .home-showcase-card-body h3 { font-size: 14px; line-height: 1.35; }
    .home-showcase-card-body p { display: none; }
    .home-showcase-detail { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
    .home-showcase-section.is-carousel-ready .home-carousel-track { transition: none; }
}


/* v45 homepage video categories and feature module visibility */
.video-home-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}
.video-home-heading > div { min-width: 0; }
.video-home-result {
    flex: 0 0 auto;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 700;
}
.video-category-switcher {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 26px 0 22px;
}
.video-category-switcher button {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--ink);
    background: rgba(255,255,255,.8);
    text-align: left;
    cursor: pointer;
    transition: .2s ease;
}
.video-category-switcher button:hover,
.video-category-switcher button.is-active {
    border-color: rgba(79,70,229,.42);
    background: #fff;
    box-shadow: 0 10px 28px rgba(33,42,77,.09);
    transform: translateY(-1px);
}
.video-category-switcher button i,
.video-card-category i {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #0ea5e9);
    font-style: normal;
    font-size: 13px;
    font-weight: 800;
}
.video-category-switcher button span { min-width: 0; display: grid; gap: 2px; }
.video-category-switcher button strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.video-category-switcher button small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: 11px; }
.video-home-grid[data-filtered] { min-height: 200px; }
.video-list-card[hidden] { display: none !important; }
.video-card-category { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; color: var(--muted); font-size: 12px; font-weight: 700; }
.video-card-category i { width: 25px; height: 25px; border-radius: 8px; font-size: 10px; }
.video-home-empty {
    margin-top: 20px;
    padding: 28px;
    border: 1px dashed var(--line);
    border-radius: 18px;
    color: var(--muted);
    background: rgba(255,255,255,.72);
    text-align: center;
}
@media (max-width: 1050px) {
    .video-category-switcher { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .video-home-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
    .video-category-switcher { display: flex; overflow-x: auto; padding-bottom: 5px; scroll-snap-type: x proximity; }
    .video-category-switcher button { flex: 0 0 185px; scroll-snap-align: start; }
    .video-home-grid { grid-template-columns: 1fr; }
}


/* v46 homepage News reads article categories and managed articles */
.home-news-section { position: relative; }
.home-news-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.home-news-heading > div { max-width: 780px; }
.home-news-heading p { margin: 10px 0 0; color: var(--muted); line-height: 1.75; }
.home-news-result { flex: 0 0 auto; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.84); color: var(--muted); font-size: 13px; font-weight: 700; }
.home-news-category-switcher { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 10px; margin: 24px 0 20px; }
.home-news-category-switcher button { display: flex; align-items: center; min-width: 0; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.78); color: var(--text); text-align: left; transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease,background .2s ease; }
.home-news-category-switcher button:hover,.home-news-category-switcher button.is-active { transform: translateY(-2px); border-color: rgba(47,128,237,.42); background: #fff; box-shadow: 0 12px 34px rgba(47,128,237,.11); }
.home-news-category-switcher button i { display: grid; place-items: center; flex: 0 0 36px; width: 36px; height: 36px; border-radius: 11px; background: linear-gradient(135deg,rgba(47,128,237,.13),rgba(22,199,132,.13)); color: var(--blue); font-style: normal; font-weight: 900; }
.home-news-category-switcher button span { min-width: 0; display: grid; gap: 2px; }
.home-news-category-switcher button strong,.home-news-category-switcher button small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-news-category-switcher button strong { font-size: 13px; }
.home-news-category-switcher button small { color: var(--muted); font-size: 11px; }
.home-news-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; min-height: 220px; }
.home-news-card { overflow: hidden; padding: 0; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.86); box-shadow: 0 18px 48px rgba(20,33,61,.07); transition: transform .22s ease,box-shadow .22s ease; }
.home-news-card:hover { transform: translateY(-5px); box-shadow: 0 24px 62px rgba(47,128,237,.13); }
.home-news-cover { position: relative; display: block; min-height: 210px; overflow: hidden; background: linear-gradient(135deg,#eaf2ff,#edf9f5); background-size: cover; background-position: center; }
.home-news-cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(10,18,30,.02),rgba(10,18,30,.5)); }
.home-news-cover span,.home-news-cover em { position: absolute; z-index: 1; bottom: 14px; color: #fff; font-style: normal; font-size: 12px; font-weight: 800; }
.home-news-cover span { left: 16px; padding: 6px 9px; border-radius: 999px; background: rgba(8,19,35,.45); backdrop-filter: blur(8px); }
.home-news-cover em { right: 16px; }
.home-news-card-body { display: grid; gap: 12px; padding: 20px; }
.home-news-meta { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12px; }
.home-news-meta i { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 8px; background: rgba(47,128,237,.1); color: var(--blue); font-style: normal; font-weight: 900; }
.home-news-meta time { margin-left: auto; }
.home-news-card h3 { margin: 0; font-size: 20px; line-height: 1.45; }
.home-news-card h3 a { color: var(--text); }
.home-news-card-body > p { display: -webkit-box; overflow: hidden; margin: 0; color: var(--muted); line-height: 1.7; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.home-news-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 12px; }
.home-news-card-foot span { overflow: hidden; color: var(--muted); text-overflow: ellipsis; white-space: nowrap; }
.home-news-card-foot a { flex: 0 0 auto; color: var(--blue); font-weight: 800; }
.home-news-empty { margin-top: 16px; padding: 24px; border: 1px dashed var(--line); border-radius: 18px; color: var(--muted); text-align: center; }
@media (max-width: 1100px) { .home-news-category-switcher { grid-template-columns: repeat(3,minmax(0,1fr)); } .home-news-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 720px) { .home-news-heading { align-items: flex-start; flex-direction: column; } .home-news-category-switcher { display: flex; overflow-x: auto; padding-bottom: 5px; scroll-snap-type: x proximity; } .home-news-category-switcher button { flex: 0 0 185px; scroll-snap-align: start; } .home-news-grid { grid-template-columns: 1fr; } .home-news-cover { min-height: 190px; } }


/* v47 Homepage certificates carousel and partner logo marquee */
.home-certificates,.home-partners{position:relative;overflow:hidden}.home-honor-heading{display:flex;align-items:end;justify-content:space-between;gap:24px}.home-honor-heading>div{max-width:780px}.home-honor-heading p,.home-partner-heading p{margin:10px 0 0;color:var(--muted);line-height:1.75}.home-certificate-controls{display:flex;align-items:center;gap:9px}.home-certificate-controls button{display:grid;place-items:center;width:42px;height:42px;border:1px solid var(--line);border-radius:14px;background:#fff;color:var(--text);font-size:18px;box-shadow:0 10px 28px rgba(20,33,61,.06);transition:transform .2s ease,border-color .2s ease}.home-certificate-controls button:hover{transform:translateY(-2px);border-color:rgba(47,128,237,.45)}.home-certificate-controls span{min-width:68px;color:var(--muted);font-size:12px;font-weight:800;text-align:center}.home-certificate-viewport{overflow:hidden;margin-top:26px}.home-certificate-track{display:flex;gap:18px;will-change:transform;transition:transform .72s cubic-bezier(.22,.61,.36,1)}.home-certificate-card{flex:0 0 var(--certificate-card-width,calc((100% - 54px)/4));min-width:0;overflow:hidden;border:1px solid var(--line);border-radius:22px;background:rgba(255,255,255,.9);box-shadow:0 18px 50px rgba(20,33,61,.07);transition:transform .26s ease,box-shadow .26s ease}.home-certificate-card:hover{transform:translateY(-6px);box-shadow:0 26px 70px rgba(47,128,237,.14)}.home-certificate-image{position:relative;aspect-ratio:3/4;overflow:hidden;background:linear-gradient(145deg,#f6f8fb,#edf2f7)}.home-certificate-image::after{content:"";position:absolute;inset:0;border:1px solid rgba(255,255,255,.7);border-radius:inherit;pointer-events:none}.home-certificate-image img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease}.home-certificate-card:hover .home-certificate-image img{transform:scale(1.025)}.home-certificate-copy{display:grid;gap:6px;padding:16px 17px 18px}.home-certificate-copy span{color:var(--blue);font-size:10px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.home-certificate-copy h3{margin:0;font-size:16px;line-height:1.42}.home-certificate-copy p{display:-webkit-box;overflow:hidden;margin:0;color:var(--muted);font-size:12px;line-height:1.6;-webkit-line-clamp:2;-webkit-box-orient:vertical}.home-certificate-dots{display:flex;justify-content:center;gap:7px;margin-top:20px}.home-certificate-dots button{width:7px;height:7px;padding:0;border:0;border-radius:99px;background:#cbd5e1;transition:width .25s ease,background .25s ease}.home-certificate-dots button.is-active{width:28px;background:var(--blue)}.home-partners{padding-top:34px}.home-partner-heading{max-width:780px;margin:0 auto 26px}.home-partner-marquee{position:relative;overflow:hidden;border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:rgba(255,255,255,.62);mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);-webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}.home-partner-track{display:flex;width:max-content;gap:18px;padding:20px 9px;animation:homePartnerMarquee var(--partner-duration,28s) linear infinite}.home-partner-marquee:hover .home-partner-track,.home-partner-marquee.is-paused .home-partner-track{animation-play-state:paused}.home-partner-logo{display:grid;place-items:center;flex:0 0 var(--partner-logo-width,168px);width:var(--partner-logo-width,168px);height:78px;padding:11px 16px;border:1px solid rgba(210,216,226,.9);border-radius:17px;background:#fff;box-shadow:0 10px 28px rgba(20,33,61,.045);transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}.home-partner-logo:hover{transform:translateY(-3px);border-color:rgba(47,128,237,.35);box-shadow:0 16px 34px rgba(47,128,237,.1)}.home-partner-logo img{display:block;max-width:100%;max-height:52px;object-fit:contain;filter:saturate(.78);transition:filter .2s ease}.home-partner-logo:hover img{filter:saturate(1)}@keyframes homePartnerMarquee{to{transform:translateX(calc(-50% - 9px))}}@media(max-width:760px){.home-honor-heading{align-items:flex-start;flex-direction:column}.home-certificate-controls{align-self:flex-end}.home-certificate-card{flex-basis:var(--certificate-card-width,calc((100% - 12px)/2))}.home-certificate-track{gap:12px}.home-certificate-copy{padding:13px}.home-certificate-copy h3{font-size:14px}.home-partner-logo{height:66px;padding:9px 13px}.home-partner-logo img{max-height:43px}.home-partner-marquee{margin-left:-14px;margin-right:-14px}}@media(max-width:440px){.home-certificate-card{flex-basis:var(--certificate-card-width,100%)}.home-certificate-image{aspect-ratio:3/4}.home-certificate-dots{justify-content:flex-start;overflow:hidden}.home-partner-heading{text-align:left}.home-partner-track{gap:12px;padding:16px 6px}}

@media (prefers-reduced-motion: reduce){.home-partner-track{animation-play-state:paused}.home-certificate-track{transition:none}}


/* v48 Certificate gallery redesign: museum stage, centered focus and depth */
.home-certificates{isolation:isolate;overflow:hidden;margin-top:18px;background:linear-gradient(145deg,#f5f8fc 0%,#eef3f9 48%,#f8fafc 100%);border-top:1px solid rgba(203,213,225,.72);border-bottom:1px solid rgba(203,213,225,.72)}
.home-certificates::before{content:"";position:absolute;z-index:-2;inset:0;background:radial-gradient(circle at 50% 48%,rgba(255,255,255,.98) 0,rgba(255,255,255,.5) 24%,transparent 54%),linear-gradient(90deg,rgba(15,23,42,.025) 1px,transparent 1px);background-size:auto,72px 100%}
.home-certificate-ambient{position:absolute;z-index:-1;inset:0;overflow:hidden;pointer-events:none}.home-certificate-ambient span{position:absolute;border-radius:999px;filter:blur(2px);opacity:.58}.home-certificate-ambient span:nth-child(1){top:-130px;left:8%;width:360px;height:360px;background:radial-gradient(circle,rgba(59,130,246,.15),transparent 68%)}.home-certificate-ambient span:nth-child(2){right:4%;bottom:-180px;width:460px;height:460px;background:radial-gradient(circle,rgba(14,165,233,.1),transparent 68%)}.home-certificate-ambient span:nth-child(3){top:36%;left:50%;width:620px;height:230px;transform:translateX(-50%);background:radial-gradient(ellipse,rgba(15,23,42,.07),transparent 70%)}
.home-certificate-heading{position:relative;z-index:3;align-items:flex-end;margin-bottom:10px}.home-certificate-heading-copy{max-width:680px}.home-certificate-heading-copy h2{font-size:clamp(32px,4vw,56px);letter-spacing:-.045em}.home-certificate-heading-meta{display:grid;justify-items:end;gap:3px;max-width:360px;text-align:right}.home-certificate-gallery-label{color:#2563eb;font-size:10px;font-weight:900;letter-spacing:.22em}.home-certificate-heading-meta strong{display:block;max-width:100%;overflow:hidden;color:#0f172a;font-size:15px;text-overflow:ellipsis;white-space:nowrap}.home-certificate-heading-meta>span:last-child{color:#64748b;font-size:12px;font-weight:700}
.home-certificate-stage{position:relative;min-height:570px;margin:4px calc(50% - 50vw) 0;padding:18px 0 34px}.home-certificate-viewport{position:relative;z-index:2;display:flex;align-items:center;width:100%;height:520px;overflow:hidden;outline:none}.home-certificate-viewport:focus-visible{box-shadow:inset 0 0 0 3px rgba(37,99,235,.22)}.home-certificate-track{display:flex;align-items:center;gap:34px;width:max-content;padding:20px 0;transition:transform .82s cubic-bezier(.22,.75,.18,1);will-change:transform}
.home-certificate-card{position:relative;z-index:1;display:grid;flex:0 0 clamp(250px,24vw,350px);gap:16px;min-width:0;margin:0;overflow:visible;border:0;border-radius:0;background:transparent;box-shadow:none;opacity:.22;filter:blur(1.3px) saturate(.62);transform:scale(.68) translateY(30px);transition:opacity .62s ease,filter .62s ease,transform .82s cubic-bezier(.22,.75,.18,1);pointer-events:none}.home-certificate-card.is-far{z-index:2;opacity:.38;filter:blur(.8px) saturate(.72);transform:scale(.74) translateY(20px);pointer-events:auto}.home-certificate-card.is-near{z-index:3;opacity:.72;filter:blur(0) saturate(.88);transform:scale(.84) translateY(11px);pointer-events:auto}.home-certificate-card.is-active{z-index:5;opacity:1;filter:none;transform:scale(1) translateY(0);pointer-events:auto}.home-certificate-card.is-outside{visibility:hidden;opacity:0;pointer-events:none}.home-certificate-card:hover{box-shadow:none}
.home-certificate-frame{position:relative;display:block;width:100%;padding:17px;border:0;border-radius:9px;background:linear-gradient(145deg,#d7b66e,#f4e4b3 20%,#997532 52%,#f3d995 79%,#8a682b);box-shadow:0 32px 75px rgba(15,23,42,.2),0 9px 24px rgba(15,23,42,.12),inset 0 0 0 1px rgba(255,255,255,.58);cursor:pointer;transition:box-shadow .25s ease}.home-certificate-card.is-active .home-certificate-frame:hover{box-shadow:0 42px 92px rgba(37,99,235,.2),0 12px 30px rgba(15,23,42,.15),inset 0 0 0 1px rgba(255,255,255,.72)}.home-certificate-frame::before{content:"";position:absolute;inset:8px;border:1px solid rgba(45,31,8,.45);border-radius:4px;pointer-events:none}.home-certificate-frame-corner{position:absolute;z-index:3;width:22px;height:22px;border-color:rgba(45,31,8,.62);pointer-events:none}.home-certificate-frame-corner.is-tl{top:10px;left:10px;border-top:2px solid;border-left:2px solid}.home-certificate-frame-corner.is-tr{top:10px;right:10px;border-top:2px solid;border-right:2px solid}.home-certificate-frame-corner.is-bl{bottom:10px;left:10px;border-bottom:2px solid;border-left:2px solid}.home-certificate-frame-corner.is-br{right:10px;bottom:10px;border-right:2px solid;border-bottom:2px solid}.home-certificate-image{position:relative;display:grid;place-items:center;aspect-ratio:3/4;overflow:hidden;padding:11px;background:#fffdf8;box-shadow:inset 0 0 0 1px rgba(148,116,52,.18)}.home-certificate-image::after{content:"";position:absolute;inset:0;background:linear-gradient(125deg,rgba(255,255,255,.42),transparent 22%,transparent 78%,rgba(148,116,52,.06));pointer-events:none}.home-certificate-image img{display:block;width:100%;height:100%;object-fit:contain;transition:transform .55s ease}.home-certificate-card.is-active .home-certificate-frame:hover img{transform:scale(1.018)}.home-certificate-view{position:absolute;z-index:5;right:28px;bottom:28px;display:flex;align-items:center;gap:7px;padding:8px 12px;border:1px solid rgba(255,255,255,.72);border-radius:999px;background:rgba(15,23,42,.82);color:#fff;font-size:11px;font-weight:800;opacity:0;transform:translateY(8px);transition:opacity .25s ease,transform .25s ease;backdrop-filter:blur(8px)}.home-certificate-view i{font-style:normal;font-size:14px}.home-certificate-card.is-active .home-certificate-frame:hover .home-certificate-view{opacity:1;transform:none}
.home-certificate-copy{display:grid;gap:5px;padding:0 10px;text-align:center;opacity:.45;transition:opacity .4s ease}.home-certificate-card.is-active .home-certificate-copy{opacity:1}.home-certificate-copy span{color:#2563eb;font-size:10px;font-weight:900;letter-spacing:.14em;text-transform:uppercase}.home-certificate-copy h3{margin:0;color:#0f172a;font-size:clamp(17px,1.6vw,22px);line-height:1.35}.home-certificate-copy p{display:-webkit-box;overflow:hidden;max-width:340px;margin:2px auto 0;color:#64748b;font-size:12px;line-height:1.65;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.home-certificate-stage-arrow{position:absolute;z-index:8;top:44%;display:grid;place-items:center;width:54px;height:54px;border:1px solid rgba(148,163,184,.48);border-radius:999px;background:rgba(255,255,255,.84);color:#0f172a;box-shadow:0 15px 40px rgba(15,23,42,.12);cursor:pointer;transition:transform .2s ease,background .2s ease,border-color .2s ease;backdrop-filter:blur(12px)}.home-certificate-stage-arrow:hover{border-color:rgba(37,99,235,.5);background:#fff;transform:translateY(-2px) scale(1.04)}.home-certificate-stage-arrow span{font-size:22px;line-height:1}.home-certificate-stage-arrow.is-prev{left:max(22px,calc((100vw - 1240px)/2 + 6px))}.home-certificate-stage-arrow.is-next{right:max(22px,calc((100vw - 1240px)/2 + 6px))}.home-certificate-stage-floor{position:absolute;z-index:1;bottom:23px;left:50%;width:min(680px,64vw);height:62px;transform:translateX(-50%);border-radius:50%;background:radial-gradient(ellipse,rgba(15,23,42,.2),transparent 68%);filter:blur(12px);opacity:.46}
.home-certificate-footer{position:relative;z-index:4;display:grid;grid-template-columns:1fr auto;align-items:center;gap:26px;max-width:1180px;margin:-4px auto 0;padding:0 24px}.home-certificate-progress{height:2px;overflow:hidden;border-radius:99px;background:rgba(148,163,184,.32)}.home-certificate-progress span{display:block;width:0;height:100%;border-radius:inherit;background:linear-gradient(90deg,#2563eb,#38bdf8);transition:width .65s ease}.home-certificate-controls{display:flex;align-items:center;gap:14px}.home-certificate-controls>span{min-width:64px;color:#334155;font-size:12px;font-weight:900;letter-spacing:.12em}.home-certificate-dots{display:flex;align-items:center;gap:6px;margin:0}.home-certificate-dots button{width:6px;height:6px;padding:0;border:0;border-radius:99px;background:#cbd5e1;cursor:pointer;transition:width .25s ease,background .25s ease}.home-certificate-dots button.is-active{width:24px;background:#2563eb}
.home-certificate-lightbox[hidden]{display:none!important}.home-certificate-lightbox{position:fixed;z-index:9999;inset:0;display:grid;place-items:center;padding:24px;opacity:0;transition:opacity .22s ease}.home-certificate-lightbox.is-open{opacity:1}.home-certificate-lightbox-backdrop{position:absolute;inset:0;width:100%;height:100%;border:0;background:rgba(2,6,23,.86);cursor:zoom-out;backdrop-filter:blur(12px)}.home-certificate-lightbox-panel{position:relative;z-index:1;display:grid;grid-template-columns:minmax(280px,580px) minmax(240px,360px);max-width:min(1040px,94vw);max-height:92vh;overflow:hidden;border:1px solid rgba(255,255,255,.14);border-radius:24px;background:#fff;box-shadow:0 40px 100px rgba(0,0,0,.45);transform:translateY(18px) scale(.97);transition:transform .25s ease}.home-certificate-lightbox.is-open .home-certificate-lightbox-panel{transform:none}.home-certificate-lightbox-close{position:absolute;z-index:3;top:14px;right:14px;display:grid;place-items:center;width:40px;height:40px;border:1px solid rgba(148,163,184,.42);border-radius:999px;background:rgba(255,255,255,.9);color:#0f172a;font-size:24px;cursor:pointer}.home-certificate-lightbox-image{display:grid;place-items:center;min-height:520px;padding:28px;background:#edf2f7}.home-certificate-lightbox-image img{display:block;max-width:100%;max-height:78vh;object-fit:contain;box-shadow:0 20px 60px rgba(15,23,42,.18)}.home-certificate-lightbox-copy{align-content:center;display:grid;gap:10px;padding:50px 34px}.home-certificate-lightbox-copy span{color:#2563eb;font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}.home-certificate-lightbox-copy h3{margin:0;color:#0f172a;font-size:28px;line-height:1.25}.home-certificate-lightbox-copy p{margin:0;color:#64748b;line-height:1.75}.has-certificate-lightbox{overflow:hidden}
@media(max-width:900px){.home-certificate-heading{align-items:flex-start;flex-direction:column}.home-certificate-heading-meta{justify-items:start;text-align:left}.home-certificate-stage{min-height:520px}.home-certificate-viewport{height:470px}.home-certificate-card{flex-basis:min(310px,72vw)}.home-certificate-stage-arrow{width:46px;height:46px}.home-certificate-stage-arrow.is-prev{left:14px}.home-certificate-stage-arrow.is-next{right:14px}.home-certificate-lightbox-panel{grid-template-columns:1fr;max-width:min(620px,94vw);overflow:auto}.home-certificate-lightbox-image{min-height:0;padding:22px}.home-certificate-lightbox-image img{max-height:58vh}.home-certificate-lightbox-copy{padding:26px}.home-certificate-lightbox-copy h3{font-size:23px}}
@media(max-width:600px){.home-certificates{padding-top:62px;padding-bottom:58px}.home-certificate-heading-copy h2{font-size:36px}.home-certificate-heading-meta{display:none}.home-certificate-stage{min-height:480px;margin-top:8px;padding-bottom:20px}.home-certificate-viewport{height:430px}.home-certificate-track{gap:18px}.home-certificate-card{flex-basis:min(274px,76vw);opacity:0!important;filter:none!important;transform:scale(.86)!important}.home-certificate-card.is-active{opacity:1!important;transform:scale(1)!important}.home-certificate-card.is-near{opacity:.14!important;transform:scale(.82)!important}.home-certificate-card.is-far,.home-certificate-card.is-outside{visibility:hidden!important}.home-certificate-frame{padding:13px;border-radius:7px}.home-certificate-image{padding:8px}.home-certificate-copy{padding:0}.home-certificate-copy p{display:none}.home-certificate-stage-arrow{top:42%;width:42px;height:42px}.home-certificate-stage-arrow.is-prev{left:8px}.home-certificate-stage-arrow.is-next{right:8px}.home-certificate-footer{grid-template-columns:1fr;gap:13px;padding:0 18px}.home-certificate-controls{justify-content:space-between}.home-certificate-dots{max-width:calc(100vw - 110px);overflow:hidden}.home-certificate-lightbox{padding:12px}.home-certificate-lightbox-panel{border-radius:18px}.home-certificate-lightbox-copy{padding:22px}.home-certificate-view{display:none}}
@media(prefers-reduced-motion:reduce){.home-certificate-track,.home-certificate-card,.home-certificate-progress span,.home-certificate-lightbox,.home-certificate-lightbox-panel{transition:none!important}}


/* v49 Partner small-logo wordmarks and complete certificate lightbox frame */
.home-partner-logo{display:flex;align-items:center;justify-content:center;gap:10px;height:64px;padding:8px 13px;overflow:hidden}
.home-partner-logo-media{display:grid;place-items:center;flex:0 1 92px;min-width:0;max-width:92px;height:42px}
.home-partner-logo-media img,.home-partner-logo img{display:block;width:auto;max-width:100%;height:auto;max-height:40px;object-fit:contain;filter:saturate(.82);transition:filter .2s ease,transform .2s ease}
.home-partner-logo-wordmark{min-width:0;max-width:112px;overflow:hidden;color:#172033;font-size:12px;font-weight:900;letter-spacing:.035em;line-height:1.18;text-align:left;text-overflow:ellipsis;white-space:nowrap}
.home-partner-logo.is-text-only{padding-inline:18px}
.home-partner-logo.is-text-only .home-partner-logo-wordmark{max-width:100%;font-size:15px;letter-spacing:.06em;text-align:center}
.home-partner-logo:hover img{filter:saturate(1);transform:scale(1.025)}

.home-certificate-lightbox-panel{max-height:min(94vh,980px);overflow:auto}
.home-certificate-lightbox-image{align-content:start;justify-items:center;min-width:0;min-height:520px;padding:30px;background:linear-gradient(145deg,#e8edf4,#f8fafc);overflow:auto}
.home-certificate-lightbox-frame{position:relative;display:grid;place-items:center;width:min(100%,560px);max-height:calc(94vh - 60px);padding:19px;box-sizing:border-box;border-radius:10px;background:linear-gradient(145deg,#cda452,#f7e8b7 18%,#8b6827 49%,#f1d78c 79%,#76551d);box-shadow:0 28px 72px rgba(15,23,42,.24),inset 0 0 0 1px rgba(255,255,255,.68);overflow:visible}
.home-certificate-lightbox-frame::before{content:"";position:absolute;inset:9px;border:1px solid rgba(45,31,8,.52);border-radius:5px;pointer-events:none}
.home-certificate-lightbox-paper{display:grid;place-items:center;width:100%;max-height:calc(94vh - 98px);padding:12px;box-sizing:border-box;background:#fffdf8;box-shadow:inset 0 0 0 1px rgba(148,116,52,.18);overflow:auto}
.home-certificate-lightbox-paper img,.home-certificate-lightbox-image img{display:block;width:auto;max-width:100%;height:auto;max-height:calc(94vh - 122px);object-fit:contain;object-position:center top;box-shadow:0 16px 44px rgba(15,23,42,.14)}
.home-certificate-lightbox-corner{position:absolute;z-index:2;width:26px;height:26px;border-color:rgba(45,31,8,.7);pointer-events:none}
.home-certificate-lightbox-corner.is-tl{top:10px;left:10px;border-top:2px solid;border-left:2px solid}
.home-certificate-lightbox-corner.is-tr{top:10px;right:10px;border-top:2px solid;border-right:2px solid}
.home-certificate-lightbox-corner.is-bl{bottom:10px;left:10px;border-bottom:2px solid;border-left:2px solid}
.home-certificate-lightbox-corner.is-br{right:10px;bottom:10px;border-right:2px solid;border-bottom:2px solid}
@media(max-width:900px){.home-certificate-lightbox-image{min-height:0;padding:22px}.home-certificate-lightbox-frame{width:min(100%,520px);max-height:none}.home-certificate-lightbox-paper{max-height:none}.home-certificate-lightbox-paper img,.home-certificate-lightbox-image img{max-height:62vh}}
@media(max-width:600px){.home-partner-logo{height:58px;padding:7px 10px;gap:8px}.home-partner-logo-media{flex-basis:72px;max-width:72px;height:36px}.home-partner-logo-media img,.home-partner-logo img{max-height:34px}.home-partner-logo-wordmark{max-width:90px;font-size:11px}.home-certificate-lightbox-image{padding:16px}.home-certificate-lightbox-frame{padding:14px}.home-certificate-lightbox-paper{padding:8px}.home-certificate-lightbox-paper img,.home-certificate-lightbox-image img{max-height:56vh}}

/* v50 Qualification archive layout: calm enterprise presentation with a large viewer and compact index */
.home-certificates {
    isolation: isolate;
    overflow: hidden;
    margin-top: 18px;
    padding-top: 86px;
    padding-bottom: 86px;
    border-top: 1px solid rgba(203,213,225,.72);
    border-bottom: 1px solid rgba(203,213,225,.72);
    background:
        linear-gradient(90deg,rgba(37,99,235,.035) 1px,transparent 1px),
        linear-gradient(180deg,#f8fafc 0%,#eef4fb 100%);
    background-size: 72px 100%,auto;
}
.home-certificates::before,.home-certificate-ambient,.home-certificate-stage,.home-certificate-stage-floor,.home-certificate-heading-meta { display: none !important; }
.home-certificate-archive-shell { width: min(1240px,calc(100% - 48px)); margin: 0 auto; }
.home-certificate-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin: 0 0 32px; }
.home-certificate-heading-copy { max-width: 760px; }
.home-certificate-heading-copy h2 { margin-top: 10px; font-size: clamp(34px,4vw,56px); letter-spacing: -.045em; }
.home-certificate-heading-copy p { max-width: 680px; margin: 12px 0 0; color: #64748b; line-height: 1.8; }
.home-certificate-heading-index { display: grid; flex: 0 0 auto; justify-items: end; gap: 2px; padding-bottom: 5px; text-align: right; }
.home-certificate-heading-index strong { color: #0f172a; font-size: clamp(42px,5vw,72px); font-weight: 900; letter-spacing: -.07em; line-height: .9; }
.home-certificate-heading-index span { color: #64748b; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.home-certificate-archive { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(320px,.72fr); gap: 22px; min-height: 610px; }
.home-certificate-feature,.home-certificate-library { min-width: 0; border: 1px solid rgba(203,213,225,.9); border-radius: 28px; background: rgba(255,255,255,.9); box-shadow: 0 24px 70px rgba(15,23,42,.08); backdrop-filter: blur(14px); }
.home-certificate-feature { display: grid; grid-template-columns: minmax(300px,.96fr) minmax(280px,.74fr); overflow: hidden; }
.home-certificate-feature-visual { position: relative; display: grid; place-items: center; min-width: 0; padding: 34px; background: linear-gradient(145deg,#edf3f9,#f8fafc); }
.home-certificate-feature-visual::before { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(148,163,184,.25); border-radius: 20px; pointer-events: none; }
.home-certificate-feature-image { position: relative; z-index: 1; display: grid; place-items: center; width: 100%; height: 100%; min-height: 510px; padding: 28px; overflow: hidden; border: 0; border-radius: 18px; background: #fff; box-shadow: 0 24px 58px rgba(15,23,42,.13); cursor: zoom-in; }
.home-certificate-feature-image img { display: block; width: 100%; height: 100%; max-height: 500px; object-fit: contain; object-position: center; transition: opacity .28s ease,transform .45s ease; }
.home-certificate-feature-image img.is-changing { opacity: .18; transform: scale(.985); }
.home-certificate-feature-image:hover img { transform: scale(1.012); }
.home-certificate-feature-zoom { position: absolute; right: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 7px; padding: 9px 13px; border: 1px solid rgba(203,213,225,.84); border-radius: 999px; background: rgba(255,255,255,.92); color: #0f172a; font-size: 12px; font-weight: 800; box-shadow: 0 10px 28px rgba(15,23,42,.1); }
.home-certificate-feature-zoom i { font-style: normal; font-size: 17px; line-height: 1; }
.home-certificate-feature-stamp { position: absolute; z-index: 2; top: 31px; left: 31px; padding: 7px 10px; border-radius: 8px; background: #0f172a; color: #fff; font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.home-certificate-feature-copy { display: grid; align-content: space-between; gap: 24px; min-width: 0; padding: 42px 36px 34px; border-left: 1px solid rgba(203,213,225,.76); background: #fff; }
.home-certificate-feature-number { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid #e2e8f0; }
.home-certificate-feature-number span { color: #2563eb; font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.home-certificate-feature-number small { color: #94a3b8; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.home-certificate-feature-meta { display: inline-flex; margin-bottom: 12px; color: #2563eb; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.home-certificate-feature-copy h3 { margin: 0; color: #0f172a; font-size: clamp(27px,3vw,42px); line-height: 1.16; letter-spacing: -.035em; }
.home-certificate-feature-copy p { margin: 16px 0 0; color: #64748b; font-size: 14px; line-height: 1.78; }
.home-certificate-feature-progress { height: 3px; overflow: hidden; border-radius: 99px; background: #e2e8f0; }
.home-certificate-feature-progress span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#2563eb,#38bdf8); transition: width .55s ease; }
.home-certificate-feature-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.home-certificate-feature-actions button { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; border: 1px solid #d6deea; border-radius: 13px; background: #fff; color: #0f172a; font-weight: 800; cursor: pointer; transition: border-color .2s ease,transform .2s ease,background .2s ease; }
.home-certificate-feature-actions button:last-child { border-color: #2563eb; background: #2563eb; color: #fff; }
.home-certificate-feature-actions button:hover { transform: translateY(-2px); border-color: #2563eb; }
.home-certificate-library { display: grid; grid-template-rows: auto minmax(0,1fr) auto; overflow: hidden; padding: 24px 18px 18px; }
.home-certificate-library-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 0 6px 18px; border-bottom: 1px solid #e2e8f0; }
.home-certificate-library-head>div { display: grid; gap: 3px; }
.home-certificate-library-head span { color: #2563eb; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.home-certificate-library-head strong { color: #0f172a; font-size: 19px; }
.home-certificate-library-head small { color: #94a3b8; font-size: 11px; font-weight: 700; }
.home-certificate-viewport { width: 100%; height: 488px; margin: 0; padding: 14px 2px; overflow: auto; scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: #cbd5e1 transparent; outline: none; }
.home-certificate-viewport::-webkit-scrollbar { width: 5px; height: 5px; }
.home-certificate-viewport::-webkit-scrollbar-thumb { border-radius: 99px; background: #cbd5e1; }
.home-certificate-track { display: grid; gap: 9px; width: 100%; padding: 0; transform: none !important; transition: none; }
.home-certificate-card { display: block; width: 100%; min-width: 0; margin: 0; opacity: 1; visibility: visible; filter: none; transform: none; pointer-events: auto; }
.home-certificate-card.is-near,.home-certificate-card.is-far,.home-certificate-card.is-outside,.home-certificate-card.is-active { opacity: 1; visibility: visible; filter: none; transform: none; }
.home-certificate-library-item { display: grid; grid-template-columns: 56px minmax(0,1fr) 24px; align-items: center; gap: 12px; width: 100%; min-height: 76px; padding: 9px; border: 1px solid transparent; border-radius: 16px; background: transparent; color: inherit; text-align: left; cursor: pointer; transition: border-color .2s ease,background .2s ease,transform .2s ease; }
.home-certificate-library-item:hover { background: #f8fafc; transform: translateX(2px); }
.home-certificate-card.is-active .home-certificate-library-item { border-color: rgba(37,99,235,.28); background: linear-gradient(90deg,rgba(37,99,235,.1),rgba(56,189,248,.045)); }
.home-certificate-library-thumb { display: grid; place-items: center; width: 56px; height: 56px; overflow: hidden; border: 1px solid #dbe3ee; border-radius: 11px; background: #fff; }
.home-certificate-library-thumb img { display: block; width: 100%; height: 100%; padding: 4px; object-fit: contain; }
.home-certificate-library-copy { display: grid; min-width: 0; gap: 2px; }
.home-certificate-library-copy small { color: #2563eb; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.home-certificate-library-copy strong { overflow: hidden; color: #172033; font-size: 13px; line-height: 1.32; text-overflow: ellipsis; white-space: nowrap; }
.home-certificate-library-copy em { overflow: hidden; color: #94a3b8; font-size: 10px; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.home-certificate-library-arrow { color: #94a3b8; font-size: 16px; transition: color .2s ease,transform .2s ease; }
.home-certificate-card.is-active .home-certificate-library-arrow { color: #2563eb; transform: translateX(2px); }
.home-certificate-library .home-certificate-dots { display: flex; justify-content: center; gap: 6px; margin: 14px 0 0; }
.home-certificate-library .home-certificate-dots button { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 99px; background: #cbd5e1; cursor: pointer; transition: width .2s ease,background .2s ease; }
.home-certificate-library .home-certificate-dots button.is-active { width: 22px; background: #2563eb; }
@media (max-width: 1100px) {
    .home-certificate-archive { grid-template-columns: minmax(0,1fr) 300px; }
    .home-certificate-feature { grid-template-columns: minmax(270px,1fr) minmax(240px,.72fr); }
    .home-certificate-feature-visual { padding: 25px; }
    .home-certificate-feature-image { min-height: 460px; padding: 20px; }
    .home-certificate-feature-copy { padding: 34px 28px 28px; }
}
@media (max-width: 960px) {
    .home-certificate-archive { grid-template-columns: 1fr; min-height: 0; }
    .home-certificate-library { grid-template-rows: auto auto auto; }
    .home-certificate-viewport { height: auto; overflow-x: auto; overflow-y: hidden; padding: 14px 1px 8px; scroll-snap-type: x proximity; }
    .home-certificate-track { display: flex; width: max-content; gap: 10px; }
    .home-certificate-card { flex: 0 0 260px; scroll-snap-align: center; }
    .home-certificate-library-item { min-height: 72px; }
}
@media (max-width: 760px) {
    .home-certificates { padding-top: 64px; padding-bottom: 64px; }
    .home-certificate-archive-shell { width: min(100% - 28px,1240px); }
    .home-certificate-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
    .home-certificate-heading-index { justify-items: start; text-align: left; }
    .home-certificate-heading-index strong { font-size: 48px; }
    .home-certificate-feature { grid-template-columns: 1fr; }
    .home-certificate-feature-visual { min-height: 420px; padding: 22px; }
    .home-certificate-feature-image { min-height: 376px; padding: 18px; }
    .home-certificate-feature-image img { max-height: 360px; }
    .home-certificate-feature-copy { padding: 28px 24px 24px; border-top: 1px solid #e2e8f0; border-left: 0; }
    .home-certificate-feature-copy h3 { font-size: 30px; }
    .home-certificate-library { padding: 20px 14px 14px; }
    .home-certificate-card { flex-basis: 235px; }
}
@media (max-width: 480px) {
    .home-certificate-feature-visual { min-height: 365px; padding: 16px; }
    .home-certificate-feature-image { min-height: 332px; padding: 14px; }
    .home-certificate-feature-image img { max-height: 310px; }
    .home-certificate-feature-copy { padding: 24px 18px 20px; }
    .home-certificate-feature-number small { display: none; }
    .home-certificate-feature-actions button span { display: none; }
    .home-certificate-card { flex-basis: 220px; }
    .home-certificate-library-head small { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .home-certificate-feature-image img,.home-certificate-feature-progress span,.home-certificate-library-item { transition: none !important; }
}

/* v50 final resets for legacy gallery rules and neutral full-image preview */
.home-certificate-viewport { display: block; align-items: initial; }
.home-certificate-track { align-items: stretch; }
.home-certificate-lightbox-frame {
    padding: 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background: #111827;
    box-shadow: 0 30px 80px rgba(0,0,0,.34),inset 0 0 0 1px rgba(255,255,255,.08);
}
.home-certificate-lightbox-frame::before { inset: 7px; border-color: rgba(96,165,250,.42); border-radius: 7px; }
.home-certificate-lightbox-paper { padding: 16px; background: #fff; box-shadow: none; }
.home-certificate-lightbox-corner { border-color: rgba(96,165,250,.82); }
@media (min-width: 961px) { .home-certificate-viewport { height: var(--certificate-list-height,340px); max-height: 488px; } }


/* v51 homepage one-stop service flow: slow sequential lighting animation */
.home-service-process {
    position: relative;
    overflow: hidden;
    padding-top: 82px;
    background:
        radial-gradient(circle at 10% 10%, rgba(37,99,235,.06), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(16,185,129,.055), transparent 25%),
        #fff;
}
.home-service-process::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(148,163,184,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,.08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}
.home-service-process-heading { position: relative; z-index: 1; }
.home-service-process-heading p { max-width: 680px; margin: 14px auto 0; color: #64748b; line-height: 1.8; }
.service-process-shell {
    --process-progress: 0%;
    position: relative;
    z-index: 1;
    width: min(1320px, calc(100% - 48px));
    margin: 38px auto 0;
    padding: 32px 26px 24px;
    overflow: hidden;
    border: 1px solid #dbe3ee;
    border-radius: 30px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 26px 78px rgba(15,23,42,.075);
}
.service-process-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.7) 44%, transparent 62%);
    transform: translateX(-115%);
}
.service-process-shell.is-running::after { animation: serviceProcessSheen 8.5s ease-in-out infinite; }
.service-process-rail {
    position: absolute;
    z-index: 1;
    top: 82px;
    left: calc(26px + var(--process-edge));
    right: calc(26px + var(--process-edge));
    height: 4px;
    border-radius: 999px;
    background: #e4eaf2;
}
.service-process-rail > i {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--process-progress);
    border-radius: inherit;
    background: linear-gradient(90deg, #111827 0%, #2563eb 55%, #10b981 100%);
    box-shadow: 0 0 18px rgba(37,99,235,.36);
    transition: width 1.05s cubic-bezier(.22,.72,.22,1);
}
.service-process-rail > b {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: var(--process-progress);
    width: 15px;
    height: 15px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #2563eb;
    box-shadow: 0 0 0 7px rgba(37,99,235,.13), 0 0 26px rgba(37,99,235,.58);
    opacity: 0;
    transform: translate(-50%,-50%) scale(.65);
    transition: left 1.05s cubic-bezier(.22,.72,.22,1), opacity .35s ease, transform .45s ease;
}
.service-process-shell.is-running .service-process-rail > b { opacity: 1; transform: translate(-50%,-50%) scale(1); animation: serviceProcessRunnerPulse 2s ease-in-out infinite; }
.steps.service-process-steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(var(--process-count), minmax(0,1fr));
    gap: 14px;
    align-items: stretch;
}
.step.service-process-step {
    position: relative;
    display: grid;
    place-items: start center;
    align-content: start;
    gap: 18px;
    width: auto;
    min-width: 0;
    min-height: 170px;
    padding: 20px 13px 18px;
    overflow: hidden;
    border: 1px solid #e2e8f0 !important;
    border-radius: 22px;
    background: rgba(248,250,252,.84) !important;
    opacity: .43;
    transform: translateY(15px) scale(.975);
    transition: opacity .85s ease, transform .85s cubic-bezier(.22,.72,.22,1), border-color .85s ease, background .85s ease, box-shadow .85s ease;
}
.step.service-process-step::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0%, rgba(37,99,235,.16), transparent 48%);
    opacity: 0;
    transition: opacity .85s ease;
}
.service-process-node {
    position: relative;
    z-index: 3;
    display: grid !important;
    place-items: center;
    align-content: center;
    width: 58px !important;
    height: 58px !important;
    padding: 0 !important;
    border: 4px solid #fff;
    border-radius: 50% !important;
    color: #94a3b8 !important;
    background: #e8edf4 !important;
    box-shadow: 0 0 0 1px #dbe3ee, 0 10px 24px rgba(15,23,42,.08) !important;
    transition: color .8s ease, background .8s ease, box-shadow .8s ease, transform .8s cubic-bezier(.22,.72,.22,1) !important;
}
.service-process-node small { display: block; margin-bottom: -1px; font-size: 7px; font-weight: 900; line-height: 1; letter-spacing: .12em; }
.service-process-node strong { display: block; font-size: 18px; font-weight: 900; line-height: 1; }
.service-process-copy { position: relative; z-index: 2; display: grid; justify-items: center; gap: 8px; width: 100%; }
.service-process-copy em { color: #94a3b8; font-size: 9px; font-style: normal; font-weight: 900; letter-spacing: .13em; transition: color .7s ease; }
.step.service-process-step .service-process-copy p { margin: 0; color: #64748b; font-size: 14px; font-weight: 800; line-height: 1.55; text-align: center; transition: color .7s ease; }
.step.service-process-step.is-complete,
.step.service-process-step.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.step.service-process-step.is-complete {
    border-color: #bfdbfe !important;
    background: linear-gradient(180deg,#fff,#f8fbff) !important;
}
.step.service-process-step.is-complete .service-process-node {
    color: #fff !important;
    background: linear-gradient(145deg,#111827,#2563eb) !important;
    box-shadow: 0 0 0 1px rgba(37,99,235,.2), 0 12px 28px rgba(37,99,235,.22) !important;
}
.step.service-process-step.is-active {
    z-index: 3;
    border-color: rgba(16,185,129,.55) !important;
    background: linear-gradient(180deg,#fff,#f0fdf8) !important;
    box-shadow: 0 18px 42px rgba(16,185,129,.14) !important;
}
.step.service-process-step.is-active::before { opacity: 1; }
.step.service-process-step.is-active .service-process-node {
    color: #fff !important;
    background: linear-gradient(145deg,#2563eb,#10b981) !important;
    box-shadow: 0 0 0 1px rgba(16,185,129,.18), 0 0 0 10px rgba(16,185,129,.09), 0 15px 34px rgba(16,185,129,.28) !important;
    transform: translateY(-3px) scale(1.06);
    animation: serviceProcessNodeGlow 2.2s ease-in-out infinite;
}
.step.service-process-step.is-complete .service-process-copy p,
.step.service-process-step.is-active .service-process-copy p { color: #0f172a; }
.step.service-process-step.is-active .service-process-copy em { color: #059669; }
.service-process-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    padding: 15px 18px 0;
    border-top: 1px solid #edf1f6;
    color: #64748b;
    font-size: 12px;
}
.service-process-footer > span { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; }
.service-process-footer > span i { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; box-shadow: 0 0 0 5px rgba(203,213,225,.22); transition: background .35s ease, box-shadow .35s ease; }
.service-process-shell.is-running .service-process-footer > span i { background: #10b981; box-shadow: 0 0 0 5px rgba(16,185,129,.13); animation: serviceProcessStatusPulse 1.8s ease-in-out infinite; }
.service-process-footer strong { color: #0f172a; font-size: 12px; text-align: right; }
@keyframes serviceProcessSheen { 0%,42% { transform: translateX(-115%); } 72%,100% { transform: translateX(115%); } }
@keyframes serviceProcessRunnerPulse { 0%,100% { box-shadow: 0 0 0 6px rgba(37,99,235,.13),0 0 22px rgba(37,99,235,.5); } 50% { box-shadow: 0 0 0 11px rgba(37,99,235,0),0 0 34px rgba(37,99,235,.7); } }
@keyframes serviceProcessNodeGlow { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.13); } }
@keyframes serviceProcessStatusPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.22); } }
@media (max-width: 860px) {
    .home-service-process { padding-top: 64px; }
    .service-process-shell { --process-progress: 0%; width: min(100% - 28px,620px); padding: 22px 16px 18px; overflow: hidden; }
    .service-process-rail { top: 52px; bottom: 72px; left: 46px; right: auto; width: 4px; height: auto; min-width: 0; }
    .service-process-rail > i { inset: 0 0 auto; width: 100%; height: var(--process-progress); transition: height 1.05s cubic-bezier(.22,.72,.22,1); }
    .service-process-rail > b { top: var(--process-progress); left: 50%; transition: top 1.05s cubic-bezier(.22,.72,.22,1), opacity .35s ease, transform .45s ease; }
    .steps.service-process-steps { grid-template-columns: 1fr; gap: 12px; min-width: 0; }
    .step.service-process-step { grid-template-columns: 62px minmax(0,1fr); place-items: center start; gap: 16px; min-height: 92px; padding: 14px 16px 14px 0; border-radius: 18px; }
    .service-process-node { margin-left: 0; }
    .service-process-copy { justify-items: start; gap: 4px; }
    .step.service-process-step .service-process-copy p { font-size: 14px; text-align: left; }
    .service-process-footer { align-items: flex-start; flex-direction: column; padding: 15px 4px 0; }
    .service-process-footer strong { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
    .service-process-shell::after,.service-process-rail > b,.service-process-node,.service-process-footer > span i { animation: none !important; }
    .service-process-rail > i,.service-process-rail > b,.step.service-process-step { transition: none !important; }
}

/* =========================================================
   v52 Enterprise footer builder
   ========================================================= */
.site-footer.site-footer-v2 {
    display: block;
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 0;
    color: #263247;
    background: #f4f7fb;
    border-top: 1px solid #e4e9f1;
    overflow: hidden;
}
.site-footer-v2::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 240px;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 0%, rgba(37, 99, 235, .08), transparent 32%),
        radial-gradient(circle at 86% 8%, rgba(16, 185, 129, .07), transparent 27%);
}
.footer-advantages-wrap,
.footer-main-wrap,
.footer-bottom-wrap { position: relative; z-index: 1; }
.footer-advantages-wrap {
    border-bottom: 1px solid #dfe5ee;
    background: rgba(255,255,255,.55);
}
.footer-advantages {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.footer-advantage {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 24px 28px;
    border-right: 1px solid #e1e6ee;
}
.footer-advantage:first-child { border-left: 1px solid #e1e6ee; }
.footer-advantage-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #1768e8;
    background: linear-gradient(145deg, #fff, #e6f0ff);
    box-shadow: 0 12px 26px rgba(37,99,235,.14), inset 0 0 0 1px rgba(37,99,235,.08);
}
.footer-advantage-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-advantage-icon svg text { fill: currentColor; stroke: none; font-size: 7px; font-weight: 900; }
.footer-advantage-copy { min-width: 0; display: grid; gap: 5px; }
.footer-advantage-copy strong { color: #111827; font-size: 16px; line-height: 1.3; letter-spacing: -.01em; }
.footer-advantage-copy small { color: #7a8699; font-size: 12px; line-height: 1.55; }

.footer-main-wrap { padding: 55px 0 48px; }
.footer-main {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
    gap: clamp(42px, 6vw, 92px);
    align-items: start;
}
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: clamp(24px, 3.2vw, 56px);
}
.footer-column h3 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 12px;
    color: #111827;
    font-size: 15px;
    font-weight: 800;
}
.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, #1768e8, #42a5ff);
}
.footer-column nav { display: grid; gap: 13px; }
.footer-column a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #68758a;
    font-size: 13px;
    line-height: 1.4;
    transition: color .22s ease, transform .22s ease;
}
.footer-column a span { opacity: 0; color: #1768e8; transform: translateX(-5px); transition: opacity .22s ease, transform .22s ease; }
.footer-column a:hover { color: #1768e8; transform: translateX(3px); }
.footer-column a:hover span { opacity: 1; transform: translateX(0); }

.footer-contact-card {
    padding: 26px;
    border: 1px solid rgba(176,188,207,.55);
    border-radius: 22px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 20px 60px rgba(31,55,90,.08);
    backdrop-filter: blur(12px);
}
.footer-contact-eyebrow { display: block; margin-bottom: 8px; color: #1768e8; font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.footer-contact-card > h3 { margin: 0; color: #111827; font-size: 22px; letter-spacing: -.025em; }
.footer-contact-card > p { margin: 10px 0 20px; color: #778399; font-size: 12px; line-height: 1.75; }
.footer-qr-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.footer-qr-card {
    min-width: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 12px 10px;
    border: 1px solid #e4e9f1;
    border-radius: 15px;
    color: #344054;
    background: #fff;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.footer-qr-card:hover { transform: translateY(-3px); border-color: #b9d2ff; box-shadow: 0 14px 30px rgba(37,99,235,.12); }
.footer-qr-image { position: relative; display: block; width: 112px; height: 112px; padding: 5px; border-radius: 9px; background: #fff; overflow: hidden; }
.footer-qr-image > img { width: 100%; height: 100%; display: block; object-fit: contain; }
.footer-qr-brand {
    position: absolute;
    left: 50%; top: 50%;
    width: 27px; height: 27px;
    display: grid; place-items: center;
    transform: translate(-50%, -50%);
    border: 3px solid #fff;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 3px 10px rgba(15,23,42,.18);
}
.footer-qr-brand.is-whatsapp { background: #20b95a; }
.footer-qr-brand.is-facebook { background: #1768e8; }
.footer-qr-brand svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.footer-qr-brand.is-facebook svg { fill: currentColor; stroke: none; }
.footer-qr-card strong { max-width: 100%; color: #344054; font-size: 11px; text-align: center; line-height: 1.35; }
.footer-contact-actions { display: grid; gap: 12px; margin-top: 18px; }
.footer-contact-actions > p { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0; padding-top: 15px; border-top: 1px solid #e5eaf1; font-size: 12px; }
.footer-contact-actions > p span { color: #8994a6; }
.footer-contact-actions > p a { color: #21324b; font-weight: 800; }
.footer-contact-button {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 18px;
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    background: linear-gradient(100deg, #145ee6, #267cf3);
    box-shadow: 0 12px 24px rgba(37,99,235,.2);
}
.footer-contact-button span { transition: transform .2s ease; }
.footer-contact-button:hover span { transform: translateX(4px); }

.footer-bottom-wrap { border-top: 1px solid #dde4ee; background: rgba(239,244,250,.86); }
.footer-bottom {
    width: min(1380px, calc(100% - 48px));
    min-height: 116px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    align-items: center;
    gap: 28px;
}
.footer-brand-block { display: flex; align-items: center; gap: 13px; min-width: 210px; }
.footer-brand-mark { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; color: #fff; font-weight: 900; font-size: 20px; background: linear-gradient(145deg,#1261e8,#2d8cff); box-shadow: 0 10px 22px rgba(37,99,235,.2); }
.footer-brand-block > div { display: grid; gap: 2px; }
.footer-brand-block strong { color: #111827; font-size: 18px; line-height: 1.2; }
.footer-brand-block small { color: #7d899b; font-size: 11px; }
.footer-socials { display: flex; align-items: center; gap: 8px; }
.footer-socials a,.footer-socials>span { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid #dce3ed; border-radius: 10px; color: #5f6d82; background: #fff; transition: color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.footer-socials>span.is-disabled{opacity:.48;cursor:not-allowed}
.footer-socials a:hover { color: #1768e8; border-color: #a9c8ff; transform: translateY(-3px); box-shadow: 0 10px 22px rgba(37,99,235,.12); }
.footer-socials svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-socials svg .play { fill: #fff; stroke: none; }
.footer-socials a[aria-label*="Facebook"] svg { fill: currentColor; stroke: none; }
.footer-legal { min-width: 0; display: grid; justify-items: end; gap: 7px; text-align: right; }
.footer-legal p, .footer-legal small { margin: 0; color: #7d899b; font-size: 11px; line-height: 1.55; }
.footer-legal > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
.footer-legal > div a { color: #536175; font-size: 11px; }
.footer-legal > div a:hover { color: #1768e8; }

@media (max-width: 1180px) {
    .footer-main { grid-template-columns: 1fr; }
    .footer-contact-card { width: min(720px, 100%); }
    .footer-bottom { grid-template-columns: auto 1fr; }
    .footer-legal { grid-column: 1 / -1; justify-items: start; padding-bottom: 24px; text-align: left; }
    .footer-legal > div { justify-content: flex-start; }
}
@media (max-width: 900px) {
    .footer-advantages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-advantage { border-bottom: 1px solid #e1e6ee; }
    .footer-advantage:nth-child(2n) { border-right: 1px solid #e1e6ee; }
    .footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 44px; }
}
@media (max-width: 620px) {
    .footer-advantages, .footer-main, .footer-bottom { width: min(100% - 28px, 1380px); }
    .footer-advantages { grid-template-columns: 1fr; }
    .footer-advantage { min-height: 88px; justify-content: flex-start; padding: 18px 12px; border-left: 0 !important; border-right: 0 !important; }
    .footer-advantage-icon { width: 45px; height: 45px; flex-basis: 45px; border-radius: 14px; }
    .footer-main-wrap { padding: 42px 0 36px; }
    .footer-columns { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
    .footer-column h3 { margin-bottom: 18px; font-size: 14px; }
    .footer-column a { font-size: 12px; }
    .footer-contact-card { padding: 20px 16px; border-radius: 18px; }
    .footer-contact-card > h3 { font-size: 20px; }
    .footer-qr-image { width: 104px; height: 104px; }
    .footer-bottom { min-height: 0; padding: 28px 0; grid-template-columns: 1fr; gap: 20px; }
    .footer-socials { flex-wrap: wrap; }
    .footer-legal { grid-column: auto; padding-bottom: 0; }
}
@media (max-width: 390px) {
    .footer-columns { grid-template-columns: 1fr; }
    .footer-qr-grid { gap: 9px; }
    .footer-qr-image { width: 94px; height: 94px; }
}

/* =========================================================
   v53 — black & white minimal footer
   ========================================================= */
.site-footer.site-footer-v2 {
    color: #171717;
    background: #fff;
    border-top-color: #dcdcdc;
}
.site-footer-v2::before { display: none; }
.footer-advantages-wrap {
    background: #fff;
    border-bottom-color: #dedede;
}
.footer-advantages,
.footer-main,
.footer-bottom { width: min(1320px, calc(100% - 48px)); }
.footer-advantage {
    min-height: 88px;
    gap: 14px;
    padding: 18px 22px;
    border-color: #e1e1e1;
}
.footer-advantage:first-child { border-left-color: #e1e1e1; }
.footer-advantage-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    color: #111;
    background: #fff;
    box-shadow: none;
}
.footer-advantage-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.footer-advantage-copy { gap: 3px; }
.footer-advantage-copy strong { color: #111; font-size: 14px; font-weight: 750; }
.footer-advantage-copy small { color: #747474; font-size: 11px; line-height: 1.45; }

.footer-main-wrap { padding: 42px 0 36px; }
.footer-main {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: clamp(34px, 4.4vw, 64px);
}
.footer-columns { gap: clamp(22px, 2.6vw, 42px); }
.footer-column h3 {
    margin-bottom: 19px;
    padding-bottom: 10px;
    color: #111;
    font-size: 14px;
    font-weight: 760;
    border-bottom: 1px solid #e3e3e3;
}
.footer-column h3::after {
    width: 22px;
    height: 1px;
    background: #111;
}
.footer-column nav { gap: 11px; }
.footer-column a {
    color: #666;
    font-size: 12px;
    transition: color .18s ease, transform .18s ease;
}
.footer-column a span { color: #111; }
.footer-column a:hover { color: #111; transform: translateX(2px); }

/* Smaller, quieter contact block */
.footer-contact-card {
    width: 300px;
    max-width: 100%;
    justify-self: end;
    padding: 18px;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
}
.footer-contact-eyebrow {
    margin-bottom: 5px;
    color: #777;
    font-size: 9px;
    letter-spacing: .14em;
}
.footer-contact-card > h3 { color: #111; font-size: 17px; letter-spacing: -.015em; }
.footer-contact-card > p { margin: 6px 0 13px; color: #777; font-size: 11px; line-height: 1.55; }
.footer-qr-grid { gap: 9px; }
.footer-qr-card {
    gap: 7px;
    padding: 8px 6px;
    border-color: #dedede;
    border-radius: 9px;
    color: #222;
    box-shadow: none;
}
.footer-qr-card:hover {
    transform: translateY(-2px);
    border-color: #111;
    box-shadow: none;
}
.footer-qr-image {
    width: 82px;
    height: 82px;
    padding: 3px;
    border: 1px solid #ededed;
    border-radius: 5px;
}
.footer-qr-brand {
    width: 21px;
    height: 21px;
    border-width: 2px;
    border-radius: 5px;
    color: #fff;
    background: #111 !important;
    box-shadow: none;
}
.footer-qr-brand svg { width: 12px; height: 12px; }
.footer-qr-card strong { color: #333; font-size: 10px; font-weight: 650; }
.footer-contact-actions { gap: 9px; margin-top: 12px; }
.footer-contact-actions > p {
    gap: 8px;
    padding-top: 10px;
    border-top-color: #e3e3e3;
    font-size: 10px;
}
.footer-contact-actions > p span { color: #777; }
.footer-contact-actions > p a { color: #111; font-weight: 760; }
.footer-contact-button {
    min-height: 36px;
    gap: 8px;
    padding: 0 13px;
    border: 1px solid #111;
    border-radius: 7px;
    color: #fff;
    font-size: 11px;
    background: #111;
    box-shadow: none;
}
.footer-contact-button:hover { color: #111; background: #fff; }

.footer-bottom-wrap { border-top-color: #dedede; background: #fafafa; }
.footer-bottom {
    min-height: 92px;
    gap: 22px;
}
.footer-brand-block { min-width: 190px; gap: 10px; }
.footer-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #fff;
    font-size: 17px;
    background: #111;
    box-shadow: none;
}
.footer-brand-block strong { color: #111; font-size: 16px; }
.footer-brand-block small { color: #777; font-size: 10px; }
.footer-socials { gap: 6px; }
.footer-socials a,
.footer-socials > span {
    width: 32px;
    height: 32px;
    border-color: #d3d3d3;
    border-radius: 7px;
    color: #111;
    background: #fff;
    box-shadow: none;
}
.footer-socials a:hover {
    color: #fff;
    border-color: #111;
    background: #111;
    transform: translateY(-2px);
    box-shadow: none;
}
.footer-socials svg { width: 16px; height: 16px; }
.footer-legal { gap: 5px; }
.footer-legal p,
.footer-legal small { color: #777; font-size: 10px; }
.footer-legal > div { gap: 12px; }
.footer-legal > div a { color: #555; font-size: 10px; }
.footer-legal > div a:hover { color: #111; text-decoration: underline; }

@media (max-width: 1180px) {
    .footer-main { grid-template-columns: minmax(0, 1fr) 280px; }
    .footer-contact-card { width: 280px; }
}
@media (max-width: 980px) {
    .footer-main { grid-template-columns: 1fr; }
    .footer-contact-card { width: min(460px, 100%); justify-self: start; }
    .footer-bottom { grid-template-columns: auto 1fr; }
}
@media (max-width: 620px) {
    .footer-advantages,
    .footer-main,
    .footer-bottom { width: min(100% - 28px, 1320px); }
    .footer-advantage { min-height: 70px; padding: 14px 8px; }
    .footer-advantage-icon { width: 38px; height: 38px; flex-basis: 38px; border-radius: 8px; }
    .footer-main-wrap { padding: 32px 0 28px; }
    .footer-columns { gap: 28px 18px; }
    .footer-contact-card { padding: 15px; border-radius: 10px; }
    .footer-contact-card > h3 { font-size: 16px; }
    .footer-qr-image { width: 78px; height: 78px; }
    .footer-bottom { padding: 22px 0; gap: 16px; }
}
@media (max-width: 390px) {
    .footer-qr-image { width: 72px; height: 72px; }
}

/* =========================================================
   v55 — borderless service advantages; contact card restored to v53
   ========================================================= */
.site-footer-v2 .footer-advantages-wrap {
    border-bottom: 0;
}
.site-footer-v2 .footer-advantage,
.site-footer-v2 .footer-advantage:first-child {
    border: 0;
}
.site-footer-v2 .footer-advantages {
    padding: 8px 0;
}
.site-footer-v2 .footer-advantage {
    min-height: 80px;
    padding: 14px 20px;
}
@media (max-width: 620px) {
    .site-footer-v2 .footer-advantages { padding: 4px 0; }
    .site-footer-v2 .footer-advantage { min-height: 64px; padding: 10px 6px; }
}

/* =========================================================
   v56 Homepage monochrome refinement
   - one-stop process: minimal black / white sequential lighting
   - partner logo strip: slightly larger
   - News / video / product series: monochrome cards
   - homepage category filter bars removed in markup
   ========================================================= */

/* Product series: white thumbnail surface and restrained black details. */
#products.soft-section {
    background: #fff;
}
.home-series-grid {
    gap: 22px;
}
.home-series-card {
    border: 1px solid #dedede !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: none !important;
}
.home-series-card:hover {
    border-color: #111 !important;
    box-shadow: 0 16px 36px rgba(0,0,0,.07) !important;
    transform: translateY(-4px);
}
.home-series-cover,
.home-series-cover.is-empty {
    background-color: #fff !important;
}
.home-series-cover.is-empty {
    background-image:
        linear-gradient(135deg, transparent 0 48%, #111 48% 49%, transparent 49% 100%),
        linear-gradient(#fff,#fff) !important;
}
.home-series-cover.is-empty::before {
    inset: 18%;
    border-color: #cfcfcf;
    border-radius: 12px;
}
.home-series-cover img {
    background: #fff;
    filter: grayscale(.08) contrast(1.01);
}
.home-series-cover::after {
    background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.68) 100%);
}
.home-series-index {
    border-color: rgba(255,255,255,.78);
    border-radius: 8px;
    background: rgba(0,0,0,.72);
    backdrop-filter: none;
}
.home-series-cover em {
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 6px;
    background: rgba(0,0,0,.76);
}
.home-series-content::before {
    height: 2px;
    background: #111;
}
.home-series-title > span,
.home-series-content p {
    color: #6d6d6d;
}
.home-series-content h3,
.home-series-content > a {
    color: #111;
}
.home-series-content > a {
    border-top-color: #e5e5e5;
}
.home-series-content > a b {
    border: 1px solid #111;
    border-radius: 6px;
    background: #fff;
    color: #111;
}
.home-series-content > a:hover b {
    background: #111;
    color: #fff;
}

/* Homepage video center: no category switcher, monochrome identity below each thumbnail. */
.video-home-section {
    background: #fff;
}
.video-category-switcher {
    display: none !important;
}
.video-home-grid {
    margin-top: 26px;
}
.video-home-section .project-list-card {
    overflow: hidden;
    border: 1px solid #dedede !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: none !important;
}
.video-home-section .project-list-card:hover {
    border-color: #111 !important;
    box-shadow: 0 16px 36px rgba(0,0,0,.07) !important;
    transform: translateY(-4px);
}
.video-home-section .project-cover:not(.has-uploaded-cover) {
    background:
        linear-gradient(145deg, rgba(255,255,255,.02), rgba(255,255,255,.08)),
        repeating-linear-gradient(90deg,#111 0 1px,#181818 1px 18px) !important;
}
.video-home-section .project-cover::before {
    background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.64));
}
.video-home-section .project-cover > span,
.video-home-section .project-cover > em {
    border: 1px solid rgba(255,255,255,.7);
    background: rgba(0,0,0,.72);
    color: #fff;
    backdrop-filter: none;
}
.video-home-section .video-cover::after {
    border: 1px solid #fff;
    background: #111;
    color: #fff;
    box-shadow: none;
}
.video-card-category {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    gap: 7px;
    margin-bottom: 9px;
    padding: 4px 9px 4px 4px;
    border: 1px solid #d9d9d9;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
}
.video-card-category i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 9px;
}
.video-home-section .project-card-body,
.video-home-section .project-card-foot {
    background: #fff;
}
.video-home-section .project-card-foot {
    border-top-color: #e5e5e5;
}
.video-home-section .project-card-foot a,
.video-home-section .project-card-body h3 a {
    color: #111;
}
.video-home-result {
    border-color: #d8d8d8;
    background: #fff;
    color: #111;
}

/* Homepage News: no category filter and no grey thumbnail placeholders. */
.home-news-section {
    background: #fff;
}
.home-news-category-switcher {
    display: none !important;
}
.home-news-grid {
    margin-top: 26px;
}
.home-news-card {
    border: 1px solid #dedede;
    border-radius: 16px;
    background: #fff;
    box-shadow: none;
}
.home-news-card:hover {
    border-color: #111;
    box-shadow: 0 16px 36px rgba(0,0,0,.07);
    transform: translateY(-4px);
}
.home-news-cover {
    background-color: #fff !important;
    border-bottom: 1px solid #e5e5e5;
}
.home-news-cover:not(.has-uploaded-cover) {
    background:
        linear-gradient(135deg, transparent 0 49.6%, #111 49.6% 50.4%, transparent 50.4% 100%),
        linear-gradient(#fff,#fff) !important;
}
.home-news-cover::after {
    background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,.68));
}
.home-news-cover span {
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 6px;
    background: rgba(0,0,0,.76);
    backdrop-filter: none;
}
.home-news-meta {
    color: #666;
}
.home-news-meta i {
    border: 1px solid #111;
    border-radius: 50%;
    background: #111;
    color: #fff;
}
.home-news-card h3 a,
.home-news-card-foot a {
    color: #111;
}
.home-news-card-foot {
    border-top-color: #e5e5e5;
}
.home-news-result {
    border-color: #d8d8d8;
    background: #fff;
    color: #111;
}

/* Partner marquee: keep the same structure but make each brand slightly larger. */
.home-partner-track {
    gap: 22px;
    padding-block: 24px;
}
.home-partner-logo {
    flex-basis: max(var(--partner-logo-width,196px),190px);
    width: max(var(--partner-logo-width,196px),190px);
    height: 82px;
    padding: 11px 17px;
    border-color: #d8d8d8;
    border-radius: 14px;
    box-shadow: none;
}
.home-partner-logo:hover {
    border-color: #111;
    box-shadow: 0 12px 28px rgba(0,0,0,.07);
}
.home-partner-logo-media {
    flex-basis: 110px;
    max-width: 110px;
    height: 52px;
}
.home-partner-logo-media img,
.home-partner-logo img {
    max-height: 50px;
    filter: grayscale(1) contrast(.92);
}
.home-partner-logo:hover img {
    filter: grayscale(0) contrast(1);
}
.home-partner-logo-wordmark {
    max-width: 128px;
    color: #111;
    font-size: 13px;
}

/* One-stop service process: pure black / white with the existing slow sequence. */
.home-service-process {
    background: #fff;
}
.home-service-process::before {
    display: none;
}
.home-service-process-heading p {
    color: #666;
}
.service-process-shell {
    border: 1px solid #111;
    border-radius: 18px;
    background: #fff;
    box-shadow: none;
}
.service-process-shell::after {
    display: none;
}
.service-process-rail {
    height: 2px;
    background: #dedede;
}
.service-process-rail > i {
    background: #111;
    box-shadow: none;
}
.service-process-rail > b {
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    background: #111;
    box-shadow: 0 0 0 1px #111;
}
.service-process-shell.is-running .service-process-rail > b {
    animation: serviceProcessMonoRunner 2.4s ease-in-out infinite;
}
.step.service-process-step {
    border: 1px solid #dedede !important;
    border-radius: 12px;
    background: #fff !important;
    box-shadow: none !important;
    opacity: .3;
}
.step.service-process-step::before {
    display: none;
}
.service-process-node {
    width: 54px !important;
    height: 54px !important;
    border: 1px solid #cfcfcf;
    color: #777 !important;
    background: #fff !important;
    box-shadow: none !important;
}
.service-process-copy em,
.step.service-process-step .service-process-copy p {
    color: #777;
}
.step.service-process-step.is-complete,
.step.service-process-step.is-active {
    opacity: 1;
    border-color: #111 !important;
    transform: translateY(0) scale(1);
}
.step.service-process-step.is-complete {
    background: #fff !important;
}
.step.service-process-step.is-complete .service-process-node {
    border-color: #111;
    color: #fff !important;
    background: #111 !important;
    box-shadow: none !important;
}
.step.service-process-step.is-active {
    background: #111 !important;
    box-shadow: none !important;
}
.step.service-process-step.is-active .service-process-node {
    border-color: #fff;
    color: #111 !important;
    background: #fff !important;
    box-shadow: 0 0 0 1px #fff !important;
    animation: serviceProcessMonoNode 2.2s ease-in-out infinite;
}
.step.service-process-step.is-complete .service-process-copy p,
.step.service-process-step.is-complete .service-process-copy em {
    color: #111;
}
.step.service-process-step.is-active .service-process-copy p,
.step.service-process-step.is-active .service-process-copy em {
    color: #fff;
}
.service-process-footer {
    border-top-color: #e5e5e5;
    color: #666;
}
.service-process-footer > span i,
.service-process-shell.is-running .service-process-footer > span i {
    background: #111;
    box-shadow: none;
    animation: serviceProcessMonoStatus 2.2s ease-in-out infinite;
}
.service-process-footer strong {
    color: #111;
}
@keyframes serviceProcessMonoRunner {
    0%,100% { box-shadow: 0 0 0 1px #111, 0 0 0 0 rgba(0,0,0,.15); }
    50% { box-shadow: 0 0 0 1px #111, 0 0 0 8px rgba(0,0,0,0); }
}
@keyframes serviceProcessMonoNode {
    0%,100% { transform: translateY(-2px) scale(1.03); }
    50% { transform: translateY(-5px) scale(1.07); }
}
@keyframes serviceProcessMonoStatus {
    0%,100% { opacity: .45; transform: scale(.92); }
    50% { opacity: 1; transform: scale(1.12); }
}

@media (max-width: 720px) {
    .home-partner-logo {
        flex-basis: 168px;
        width: 168px;
        height: 72px;
    }
    .home-partner-logo-media {
        flex-basis: 86px;
        max-width: 86px;
        height: 44px;
    }
    .home-partner-logo-media img,
    .home-partner-logo img {
        max-height: 42px;
    }
    .home-partner-logo-wordmark {
        max-width: 90px;
        font-size: 11px;
    }
    .service-process-shell {
        border-radius: 14px;
    }
    .service-process-rail {
        width: 2px;
    }
    .step.service-process-step {
        border-radius: 10px;
    }
}

/* v57 circular floating tools */
.float-service{display:none!important}
.floating-tools{
    --floating-size:56px;
    position:fixed;
    z-index:80;
    display:grid;
    gap:12px;
    pointer-events:none;
}
.floating-tools-desktop{
    right:var(--floating-right,18px);
    top:var(--floating-top,42%);
    transform:translateY(-50%);
}
.floating-tools-mobile{display:none}
.floating-tool-button{
    position:relative;
    width:var(--floating-size);
    height:var(--floating-size);
    display:grid;
    place-items:center;
    border:1px solid #111;
    border-radius:50%;
    color:#fff;
    background:#111;
    box-shadow:0 8px 24px rgba(0,0,0,.14);
    text-decoration:none;
    pointer-events:auto;
    isolation:isolate;
    transition:transform .22s ease,background .22s ease,color .22s ease,box-shadow .22s ease;
}
.floating-tool-button:hover,
.floating-tool-button:focus-visible{
    color:#111;
    background:#fff;
    transform:translateY(-3px) scale(1.04);
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    outline:none;
}
.floating-tool-icon{
    position:relative;
    z-index:2;
    width:44%;
    height:44%;
    display:grid;
    place-items:center;
}
.floating-tool-icon svg,
.floating-tool-icon img{
    width:100%;
    height:100%;
    display:block;
}
.floating-tool-icon svg{
    fill:none;
    stroke:currentColor;
    stroke-width:1.75;
    stroke-linecap:round;
    stroke-linejoin:round;
}
.floating-tool-icon img{object-fit:contain}
.floating-tool-tooltip{
    position:absolute;
    z-index:5;
    right:calc(100% + 12px);
    top:50%;
    transform:translate(8px,-50%);
    min-width:max-content;
    padding:8px 11px;
    border:1px solid #111;
    border-radius:999px;
    color:#111;
    background:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:.01em;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .18s ease,transform .18s ease,visibility .18s ease;
    box-shadow:0 8px 22px rgba(0,0,0,.09);
}
.floating-tool-tooltip:after{
    content:"";
    position:absolute;
    left:100%;
    top:50%;
    width:7px;
    height:7px;
    border-top:1px solid #111;
    border-right:1px solid #111;
    background:#fff;
    transform:translate(-4px,-50%) rotate(45deg);
}
.floating-tool-button:hover .floating-tool-tooltip,
.floating-tool-button:focus-visible .floating-tool-tooltip{
    opacity:1;
    visibility:visible;
    transform:translate(0,-50%);
}
.floating-tool-button.has-ripple:before,
.floating-tool-button.has-ripple:after{
    content:"";
    position:absolute;
    z-index:-1;
    inset:-1px;
    border:1px solid #111;
    border-radius:50%;
    opacity:0;
    animation:floating-ripple 2.8s ease-out infinite;
}
.floating-tool-button.has-ripple:after{animation-delay:1.4s}
.floating-tool-button.is-notifying{animation:floating-shake .78s cubic-bezier(.36,.07,.19,.97) both}
@keyframes floating-ripple{
    0%{transform:scale(.82);opacity:.42}
    72%,100%{transform:scale(1.65);opacity:0}
}
@keyframes floating-shake{
    0%,100%{transform:translate3d(0,0,0) rotate(0)}
    15%{transform:translate3d(-4px,0,0) rotate(-7deg)}
    30%{transform:translate3d(4px,0,0) rotate(7deg)}
    45%{transform:translate3d(-3px,0,0) rotate(-5deg)}
    60%{transform:translate3d(3px,0,0) rotate(5deg)}
    75%{transform:translate3d(-1px,0,0) rotate(-2deg)}
}
@media(max-width:900px){
    .floating-tools-desktop{display:none}
    .floating-tools-mobile{
        display:grid;
        right:var(--floating-right,12px);
        bottom:var(--floating-bottom,92px);
        top:auto;
        transform:none;
        gap:10px;
    }
    .floating-tool-tooltip{display:none}
    .floating-tool-button{box-shadow:0 7px 20px rgba(0,0,0,.16)}
}
@media(prefers-reduced-motion:reduce){
    .floating-tool-button,
    .floating-tool-button:before,
    .floating-tool-button:after{animation:none!important;transition:none!important}
}
.floating-tool-icon img{filter:grayscale(1) brightness(0) invert(1);transition:filter .22s ease}
.floating-tool-button:hover .floating-tool-icon img,.floating-tool-button:focus-visible .floating-tool-icon img{filter:grayscale(1) brightness(0)}


/* v58 mobile bottom navigation */
.mobile-bottom-nav{display:none}
@media(max-width:900px){
    .mobile-bottom-nav{
        position:fixed;
        z-index:79;
        left:0;
        right:0;
        bottom:0;
        display:block;
        color:#111;
        background:rgba(255,255,255,.97);
        border-top:1px solid #e3e3e3;
        box-shadow:0 -8px 26px rgba(0,0,0,.07);
        padding-bottom:env(safe-area-inset-bottom);
        backdrop-filter:saturate(130%) blur(14px);
        -webkit-backdrop-filter:saturate(130%) blur(14px);
    }
    .mobile-bottom-nav-inner{
        min-height:var(--mobile-nav-height,68px);
        display:grid;
        grid-template-columns:repeat(var(--mobile-nav-count,5),minmax(0,1fr));
        align-items:stretch;
        max-width:720px;
        margin:0 auto;
        padding:5px 8px 4px;
    }
    .mobile-bottom-nav-link{
        min-width:0;
        min-height:calc(var(--mobile-nav-height,68px) - 9px);
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:3px;
        color:#777;
        text-decoration:none;
        border-radius:14px;
        -webkit-tap-highlight-color:transparent;
        transition:color .2s ease,transform .2s ease,background .2s ease;
    }
    .mobile-bottom-nav-link:active{transform:scale(.94)}
    .mobile-bottom-nav-icon{
        width:34px;
        height:29px;
        display:grid;
        place-items:center;
        border-radius:11px;
        transition:background .2s ease,color .2s ease,transform .2s ease;
    }
    .mobile-bottom-nav-icon svg,.mobile-bottom-nav-icon img{
        width:var(--mobile-nav-icon-size,22px);
        height:var(--mobile-nav-icon-size,22px);
        display:block;
    }
    .mobile-bottom-nav-icon svg{fill:none;stroke:currentColor;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
    .mobile-bottom-nav-icon img{object-fit:contain;filter:grayscale(1) brightness(.42)}
    .mobile-bottom-nav-label{
        max-width:100%;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
        font-size:10px;
        line-height:1.15;
        font-weight:650;
        letter-spacing:.01em;
    }
    .mobile-bottom-nav-link.is-active{color:#111}
    .mobile-bottom-nav-link.is-active .mobile-bottom-nav-icon{color:#fff;background:#111;transform:translateY(-1px)}
    .mobile-bottom-nav-link.is-active .mobile-bottom-nav-icon img{filter:grayscale(1) brightness(0) invert(1)}
    body.has-mobile-bottom-nav{padding-bottom:calc(var(--mobile-bottom-nav-height,68px) + env(safe-area-inset-bottom))}
    body.has-mobile-bottom-nav .floating-tools-mobile{bottom:max(var(--floating-bottom,92px),calc(var(--mobile-bottom-nav-height,68px) + 14px))}
}
@media(max-width:380px){
    .mobile-bottom-nav-inner{padding-left:3px;padding-right:3px}
    .mobile-bottom-nav-link{border-radius:10px}
    .mobile-bottom-nav-icon{width:31px;height:27px}
    .mobile-bottom-nav-label{font-size:9px}
}
@media(prefers-reduced-motion:reduce){.mobile-bottom-nav-link,.mobile-bottom-nav-icon{transition:none!important}}

/* v59 bilingual language selector */
.site-header{position:relative}
.site-language-switch{position:absolute;right:clamp(18px,3vw,52px);top:50%;transform:translateY(-50%);display:flex;align-items:center;gap:7px;padding:7px 10px;border:1px solid #dcdfe5;border-radius:999px;background:rgba(255,255,255,.94);font-size:12px;font-weight:700;letter-spacing:.04em;z-index:12;box-shadow:0 6px 20px rgba(0,0,0,.04)}
.site-language-switch a{color:#777;text-decoration:none;transition:color .2s ease,background .2s ease}
.site-language-switch a.is-active{color:#111}
.site-language-switch a:hover{color:#111}
@media (max-width:1100px){.site-language-switch{right:72px;top:27px;transform:none}}
@media (max-width:520px){.site-language-switch{right:60px;top:17px;padding:5px 8px;font-size:11px;gap:5px}}

/* v72 product media uses a clean white canvas without gray preview blocks */
.catalog-card img,
.media-stage,
.media-stage-refined,
.media-stage-refined .detail-main-media,
.detail-main-media,
.media-thumb,
.media-thumb img,
.media-thumbs-upgraded .media-thumb,
.media-thumbs-upgraded .media-thumb img,
.media-thumbs-upgraded .media-video-mark {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* v76 cases, solutions and videos: uploaded media has no gray canvas */
.project-cover.has-uploaded-cover,
.project-hero-visual.has-uploaded-cover,
.video-cover.has-uploaded-cover,
.video-detail-cover.has-uploaded-cover,
.project-gallery-content figure,
.project-gallery-content figure img,
.project-gallery-content > img,
.h5-player-shell,
.h5-video-player {
    background-color: #ffffff !important;
}
.project-cover.has-uploaded-cover,
.project-hero-visual.has-uploaded-cover,
.video-cover.has-uploaded-cover,
.video-detail-cover.has-uploaded-cover {
    background-origin: border-box;
}
.project-cover.has-uploaded-cover::before,
.project-cover.has-uploaded-cover::after,
.project-hero-visual.has-uploaded-cover::before,
.project-hero-visual.has-uploaded-cover::after,
.video-cover.has-uploaded-cover::before,
.video-cover.has-uploaded-cover::after,
.video-detail-cover.has-uploaded-cover::before,
.video-detail-cover.has-uploaded-cover::after {
    display: none !important;
    content: none !important;
    background: none !important;
}
.project-cover.has-uploaded-cover > span,
.project-hero-visual.has-uploaded-cover > span,
.video-cover.has-uploaded-cover > span,
.video-detail-cover.has-uploaded-cover > span {
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .58);
    background: rgba(17, 17, 17, .58);
    box-shadow: 0 5px 16px rgba(17, 17, 17, .16);
    backdrop-filter: blur(7px);
}

/* v78 explicit overlay reset for solution and video list/detail covers */
.solution-cover.has-uploaded-cover::before,
.solution-cover.has-uploaded-cover::after,
.solution-detail-cover.has-uploaded-cover::before,
.solution-detail-cover.has-uploaded-cover::after,
.video-cover.has-uploaded-cover::before,
.video-detail-cover.has-uploaded-cover::before {
    display: none !important;
    content: none !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}
.solution-cover.has-uploaded-cover,
.solution-detail-cover.has-uploaded-cover,
.video-cover.has-uploaded-cover,
.video-detail-cover.has-uploaded-cover {
    background-color: #ffffff !important;
}

/* v79 case list/detail covers never receive a gray overlay */
.case-cover::before,
.case-cover::after,
.case-detail-cover::before,
.case-detail-cover::after {
    display: none !important;
    content: none !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}
.case-cover,
.case-detail-cover {
    background-color: #ffffff !important;
}
.case-cover > span,
.case-cover > strong,
.case-detail-cover > span,
.case-detail-cover > strong {
    width: fit-content;
    padding: 6px 10px;
    border-color: #111111;
    border-radius: 8px;
    color: #ffffff;
    background: #111111 !important;
    box-shadow: none;
    backdrop-filter: none;
    text-shadow: none;
}

/* v80 homepage case, solution and video covers have no gray gradients */
.home-case-cover::before,
.home-case-cover::after,
.home-solution-cover::before,
.home-solution-cover::after,
.home-video-cover::before {
    display: none !important;
    content: none !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}
.home-case-cover,
.home-solution-cover,
.home-video-cover {
    background-color: #ffffff !important;
}
.home-case-cover > span,
.home-solution-cover > span,
.home-video-cover > span,
.home-video-cover > strong,
.home-video-cover > em {
    border-color: #111111 !important;
    color: #ffffff !important;
    background: #111111 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    text-shadow: none !important;
}

/* v81 homepage news/series covers: remove all gray gradient overlays */
.home-series-cover::after,
.home-news-cover::after {
    display: none !important;
    content: none !important;
    background: transparent !important;
    background-image: none !important;
}
.home-series-cover,
.home-series-cover.is-empty {
    background-color: #ffffff !important;
    background-image: none !important;
}
.home-series-cover.is-empty::before {
    display: none !important;
    content: none !important;
}
.home-series-index,
.home-series-cover > em,
.home-news-cover > span {
    border-color: #111111 !important;
    color: #ffffff !important;
    background: #111111 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

/* v81 keep detail cover media inside its rounded frame */
.case-detail-cover,
.solution-detail-cover,
.video-detail-cover {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden !important;
    isolation: isolate;
    box-sizing: border-box;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-clip: padding-box !important;
    clip-path: inset(0 round 34px);
    contain: paint;
}
@media (max-width: 720px) {
    .case-detail-cover,
    .solution-detail-cover,
    .video-detail-cover { clip-path: inset(0 round 24px); }
}
.project-cover.has-uploaded-cover > strong,
.project-hero-visual.has-uploaded-cover > strong,
.video-cover.has-uploaded-cover > strong,
.video-detail-cover.has-uploaded-cover > strong {
    width: fit-content;
    padding: 5px 9px;
    border-radius: 8px;
    background: rgba(17, 17, 17, .62);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
    backdrop-filter: blur(7px);
}
.video-cover.has-uploaded-cover::after,
.video-detail-cover.has-uploaded-cover::after {
    content: '▶' !important;
    position: absolute;
    z-index: 3;
    right: 22px;
    bottom: 22px;
    display: grid !important;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(17, 17, 17, .68) !important;
    box-shadow: 0 8px 24px rgba(17, 17, 17, .22);
    font-size: 17px;
    backdrop-filter: blur(7px);
}

/* v94 homepage card label and cover refinement */
.home-case-cover > span,
.home-solution-cover > span {
    right: 14px !important;
    bottom: 14px !important;
    left: auto !important;
    max-width: calc(100% - 28px) !important;
    border-color: rgba(255, 255, 255, .4) !important;
    color: #fff !important;
    background: rgba(17, 17, 17, .10) !important;
    box-shadow: none !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .55) !important;
    backdrop-filter: blur(8px) !important;
}
.home-video-cover > span,
.home-video-cover > strong,
.home-video-cover > em,
.home-video-cover::after {
    display: none !important;
    content: none !important;
}
.home-video-cover .home-video-play {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    padding-left: 3px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 50%;
    color: #fff;
    background: rgba(17, 17, 17, .68);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
    font-style: normal;
    font-size: 18px;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(7px);
    transition: transform .2s ease, background .2s ease;
}
.home-video-cover:hover .home-video-play {
    background: #111;
    transform: translate(-50%, -50%) scale(1.06);
}
.home-news-cover-managed > span {
    right: 14px !important;
    bottom: 14px !important;
    left: auto !important;
    max-width: calc(100% - 28px);
    border: 1px solid #111 !important;
    border-radius: 7px !important;
    color: #fff !important;
    background: #111 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}
@media (max-width: 720px) {
    .home-case-cover > span,
    .home-solution-cover > span,
    .home-news-cover-managed > span { right: 10px !important; bottom: 10px !important; left: auto !important; }
    .home-video-cover .home-video-play { width: 52px; height: 52px; }
}

/* v96 video center list and detail covers: centered play only */
.video-cover-clean::before,
.video-cover-clean::after,
.video-detail-cover-clean::before,
.video-detail-cover-clean::after {
    display: none !important;
    content: none !important;
    background: transparent !important;
    box-shadow: none !important;
}
.video-cover-clean > span,
.video-cover-clean > strong,
.video-cover-clean > em,
.video-detail-cover-clean > span,
.video-detail-cover-clean > strong,
.video-detail-cover-clean > em {
    display: none !important;
}
.video-cover-clean .video-clean-play,
.video-detail-cover-clean .video-clean-play {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    padding-left: 3px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 50%;
    color: #fff;
    background: rgba(17, 17, 17, .68);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
    font-style: normal;
    font-size: 18px;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(7px);
    transition: transform .2s ease, background .2s ease;
}
.video-cover-clean:hover .video-clean-play,
.video-detail-cover-clean:hover .video-clean-play {
    background: #111;
    transform: translate(-50%, -50%) scale(1.06);
}
@media (max-width: 720px) {
    .video-cover-clean .video-clean-play,
    .video-detail-cover-clean .video-clean-play { width: 52px; height: 52px; }
}

/* v97 remove the legacy bottom-right play pseudo icon, including uploaded covers */
.home-video-cover.video-cover.has-uploaded-cover::after,
.video-cover.video-cover-clean.has-uploaded-cover::after,
.video-detail-cover.video-detail-cover-clean.has-uploaded-cover::after,
.home-video-cover.video-cover::after,
.video-cover.video-cover-clean::after,
.video-detail-cover.video-detail-cover-clean::after {
    display: none !important;
    visibility: hidden !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
    background: none !important;
    box-shadow: none !important;
}

/* v98 homepage article covers show the complete managed image */
.home-news-cover-managed {
    width: 100%;
    min-height: 0 !important;
    aspect-ratio: 16 / 9;
    background-color: #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.home-news-cover-managed.has-uploaded-cover {
    background-size: contain !important;
}

/* v105 mobile content filters: keep their original pill layout, but let them
   scroll away with the page instead of covering content while reading. */
@media (max-width: 820px) {
    .product-page-section > .filter-bar,
    .about-category-page > .about-filter-bar {
        position: static;
        top: auto;
        z-index: auto;
    }
}
/* v108 searchable international calling code for the homepage Contact form */
.contact-whatsapp-field{grid-column:1/-1}.contact-whatsapp-number{display:grid;grid-template-columns:minmax(220px,.9fr) minmax(180px,1.1fr);gap:9px;min-width:0}.contact-country-combobox{position:relative;min-width:0}.contact-country-combobox>input[type=search]{padding-right:34px}.contact-country-combobox:after{position:absolute;right:13px;top:14px;color:#7b8492;content:"⌕";pointer-events:none}.contact-country-options{position:absolute;z-index:80;top:calc(100% + 7px);left:0;width:min(430px,calc(100vw - 48px));max-height:300px;padding:7px;overflow:auto;border:1px solid var(--line);border-radius:14px;background:#fff;box-shadow:0 20px 56px rgba(15,23,42,.22)}.contact-country-options[hidden]{display:none!important}.contact-country-options button{display:grid;width:100%;grid-template-columns:minmax(92px,.8fr) minmax(118px,1fr) auto;gap:9px;align-items:center;min-height:45px;padding:7px 9px;border:0;border-radius:9px;color:#263247;background:#fff;text-align:left;cursor:pointer}.contact-country-options button:hover,.contact-country-options button:focus{outline:0;background:#f2f4f7}.contact-country-options button span{color:#1c2534;font-size:12px;font-weight:800}.contact-country-options button small{overflow:hidden;color:#7b8492;font-size:10px;text-overflow:ellipsis;white-space:nowrap}.contact-country-options button b{color:#111;font-size:11px}.contact-country-options>p{margin:0;padding:20px;color:#8993a3;text-align:center;font-size:11px}
@media(max-width:720px){.contact-whatsapp-number{grid-template-columns:1fr}.contact-country-options{width:100%}}
