:root {
    --red: #ff1f1f;
    --red-dark: #c90000;
    --wa: #25d366;
    --wa-dark: #128c4a;
    --ink: #202124;
    --muted: #5f6368;
    --line: #e4e7ec;
    --soft: #f7f8fa;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(32, 33, 36, 0.12);
    --ease: cubic-bezier(.2, 0, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow: hidden; height: 100%; }
body {
    margin: 0;
    font-family: Manrope, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
    overflow-y: auto;
    height: 100%;
}
a { color: inherit; text-decoration: none; }
a, button, input, textarea, select, label, [role="button"], [contenteditable] {
    -webkit-user-select: auto;
    user-select: auto;
    cursor: auto;
}
a, button, [role="button"] { cursor: pointer; }
:focus,
:focus-visible {
    outline: none !important;
}
.skip-link {
    display: none !important;
}
input:focus,
textarea:focus,
select:focus {
    outline: none;
}
img { display: block; max-width: 100%; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(255,255,255,.86);
    border-bottom: 1px solid rgba(228,231,236,.85);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 14px rgba(32,33,36,.05);
    transition: transform .38s var(--ease), box-shadow .38s var(--ease), background .38s var(--ease);
}
.site-header.scrolled {
    background: rgba(255,255,255,.94);
    box-shadow: 0 8px 26px rgba(32,33,36,.08);
}
.nav-shell {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.brand, .nav-links, .footer-brand { display: flex; align-items: center; gap: 10px; }
.brand { font-weight: 800; font-size: 28px; }
.brand-logo {
    display: block;
    width: 47px;
    height: auto;
    flex: 0 0 auto;
}
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 15px;
    letter-spacing: 0;
}
.nav-links { gap: 8px; font-weight: 700; color: var(--muted); }
.nav-links a { padding: 10px 14px; border-radius: 999px; transition: .2s var(--ease); }
.nav-links a:hover { background: var(--soft); color: var(--ink); }
.nav-links .nav-cta { padding: 8.5px 12px; background: var(--wa); color: #fff; font-size: 14px; }
.nav-links .nav-cta:hover { background: var(--wa-dark); color: #fff; }
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(228,231,236,.9);
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    padding: 9px 15px 9px 12px;
    border-radius: 999px;
    font-weight: 800;
    color: var(--ink);
    box-shadow: 0 5px 14px rgba(32,33,36,.08);
    transition: background .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease), transform .28s var(--ease);
}
.nav-toggle-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f3f4;
    transition: background .28s var(--ease), transform .28s var(--ease);
}
.nav-toggle-icon span {
    position: absolute;
    width: 11px;
    height: 1.8px;
    border-radius: 999px;
    background: #5f6368;
    transition: transform .28s var(--ease), opacity .2s var(--ease), background .28s var(--ease);
}
.nav-toggle-icon span:nth-child(1) { transform: translateY(-4px); }
.nav-toggle-icon span:nth-child(2) { transform: translateY(0); }
.nav-toggle-icon span:nth-child(3) { transform: translateY(4px); }
.nav-toggle > span:last-child {
    line-height: 1;
}
.nav-toggle:hover {
    transform: translateY(-1px);
    border-color: #d2dae5;
    box-shadow: 0 12px 22px rgba(32,33,36,.12);
}
.nav-toggle.is-open {
    border-color: #d6e2ff;
    background: rgba(246,249,255,.96);
    box-shadow: 0 14px 26px rgba(66,133,244,.14);
}
.nav-toggle.is-open .nav-toggle-icon {
    background: #e8f0fe;
    transform: rotate(180deg);
}
.nav-toggle.is-open .nav-toggle-icon span {
    background: #1a73e8;
}
.nav-toggle.is-open .nav-toggle-icon span:nth-child(1) {
    transform: rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(.2);
}
.nav-toggle.is-open .nav-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    padding: 96px 0 19px;
}
.pill-tabs {
    position: fixed;
    top: 78px;
    z-index: 12;
    left: 50%;
    width: fit-content;
    max-width: calc(100vw - 32px);
    display: flex;
    gap: 6px;
    margin: 0;
    padding: 7px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 28px rgba(32,33,36,.08);
    transform: translateX(-50%);
}
.pill-indicator {
    position: absolute;
    top: 7px;
    left: 0;
    z-index: 0;
    height: calc(100% - 14px);
    border-radius: 999px;
    background: #f1f3f4;
    transform: translateX(7px);
    transition: transform .34s cubic-bezier(.2, 0, 0, 1), width .34s cubic-bezier(.2, 0, 0, 1);
    pointer-events: none;
}
.pill-tabs.reveal,
.pill-tabs.reveal.visible {
    transform: translateX(-50%);
}
.pill-tabs a {
    position: relative;
    z-index: 1;
    white-space: nowrap;
    min-width: 106px;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    text-align: center;
    color: var(--muted);
    transition: color .22s var(--ease), transform .22s var(--ease);
}
.pill-tabs a:hover { transform: translateY(-1px); color: var(--ink); }
.pill-tabs .active { color: var(--ink); }
.hero-copy {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 980px;
    margin: 0 auto 74px;
}
.hero-copy h1, .page-hero h1 {
    margin: 0;
    font-size: 68px;
    line-height: 1.08;
    letter-spacing: 0;
}
.hero-copy h1 { text-wrap: balance; }
.hero-brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    height: 58px;
    min-height: 0;
    padding: 0 22px;
    margin-top: 0;
    border-radius: 999px;
    background: #ffe8e8;
    color: var(--red);
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: inset 0 0 0 1px rgba(255,31,31,.12);
    vertical-align: middle;
    transform: none;
}
.morph-isa-3m {
    position: relative;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    font-family: Manrope, sans-serif;
    border: 2px solid #ffd6dc;
    background: #fff0f2;
    box-shadow: 0 4px 24px rgba(227,24,55,.1);
}
.morph-isa-3m .text-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 40px;
}
.morph-isa-3m .text-isa {
    position: absolute;
    display: flex;
    font-weight: 800;
    font-size: 38px;
    line-height: 1;
    color: #e31837;
    -webkit-text-stroke: 1.8px #e31837;
    paint-order: stroke fill;
    gap: 1px;
    letter-spacing: .04em;
    animation: isa-main 6s cubic-bezier(.4,0,.2,1) infinite;
}
.morph-isa-3m .text-3m-logo {
    position: absolute;
    width: 60px;
    height: auto;
    object-fit: contain;
    animation: m3-main 6s cubic-bezier(.4,0,.2,1) infinite;
}
    height: auto;
    object-fit: contain;
    animation: m3-main 6s cubic-bezier(.4,0,.2,1) infinite;
}
.morph-isa-3m .text-isa span,
.morph-isa-3m .text-3m span {
    display: inline-block;
}
.morph-isa-3m .text-isa span:nth-child(1) { animation: isa-char 6s cubic-bezier(.4,0,.2,1) infinite; }
.morph-isa-3m .text-isa span:nth-child(2) { animation: isa-char 6s cubic-bezier(.4,0,.2,1) .03s infinite; }
.morph-isa-3m .text-isa span:nth-child(3) { animation: isa-char 6s cubic-bezier(.4,0,.2,1) .06s infinite; }
@keyframes isa-main {
    0%, 28% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
    35%, 80% { opacity: 0; transform: translateY(-30px) scale(.85); filter: blur(8px); }
    88% { opacity: .7; transform: translateY(4px) scale(1.02); filter: blur(1px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes isa-char {
    0%, 28% { transform: translateY(0); opacity: 1; }
    35%, 80% { transform: translateY(-20px); opacity: 0; }
    90% { transform: translateY(2px); opacity: .8; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes m3-main {
    0%, 35% { opacity: 0; transform: translateY(30px) scale(.85); filter: blur(10px); }
    45%, 70% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
    78%, 100% { opacity: 0; transform: translateY(20px) scale(.9); filter: blur(8px); }
}
@keyframes m3-char {
    0%, 35% { transform: translateY(20px); opacity: 0; }
    48%, 68% { transform: translateY(0); opacity: 1; }
    78%, 100% { transform: translateY(15px); opacity: 0; }
}
.hero-soft-word {
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    color: var(--muted);
    font-weight: 800;
    font-size: .9em;
    line-height: 1;
}
@media (min-width: 821px) {
    .hero-brand-row {
        gap: 12px;
    }
    .hero-badge {
        min-width: 120px;
        height: 52px;
        padding: 0 20px;
        font-size: 43px;
    }
    .morph-isa-3m .text-wrap {
        width: 70px;
        height: 34px;
    }
    .morph-isa-3m .text-isa {
        font-size: 34px;
    }
    .morph-isa-3m .text-3m-logo {
        width: 54px;
    }
    .hero-badge.morph-isa-3m {
        transform: translateY(4px);
    }
}
.hero-copy p, .page-hero p, .lead {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}
.hero-actions {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}
.hero-actions::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(640px, 88vw);
    height: 92px;
    pointer-events: none;
    opacity: .42;
    transform: translate(-50%, -50%);
    background-image: radial-gradient(circle, rgba(26,115,232,.45) 1.3px, transparent 1.5px);
    background-size: 24px 24px;
    mask-image: linear-gradient(90deg, transparent 0, #000 20%, #000 80%, transparent 100%);
}
.hero-search-form {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 10px;
    width: min(576px, 100%);
    min-height: 52px;
    padding: 6px 7px 6px 18px;
    border: 2px solid rgba(32,33,36,.56);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 16px 42px rgba(60,64,67,.12), inset 0 0 0 1px rgba(255,255,255,.74);
    backdrop-filter: blur(18px);
    transition: width .34s var(--ease), border-color .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease), transform .28s var(--ease);
}
.hero-search-form:hover,
.hero-search-form:focus-within {
    width: min(624px, 100%);
    border-color: rgba(234,67,53,.76);
    background: rgba(255,255,255,.9);
    box-shadow: 0 20px 50px rgba(60,64,67,.16), 0 0 0 5px rgba(66,133,244,.08), inset 0 0 0 1px rgba(255,255,255,.8);
    transform: translateY(-2px);
}
.hero-search-form:hover:not(:focus-within) {
    border-color: rgba(32,33,36,.72);
}
.hero-search-icon {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2.5px solid var(--ink);
    border-radius: 50%;
    transition: border-color .28s var(--ease), transform .28s var(--ease);
}
.hero-search-icon::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: -4px;
    width: 8px;
    height: 2.5px;
    border-radius: 999px;
    background: var(--ink);
    transform: rotate(45deg);
    transition: background .28s var(--ease);
}
.hero-search-form:focus-within .hero-search-icon {
    border-color: #34a853;
    transform: scale(1.04);
}
.hero-search-form:focus-within .hero-search-icon::after {
    background: #34a853;
}
.hero-search-form input {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    min-height: 40px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: clamp(16px, 1.6vw, 22px);
    font-weight: 800;
}
.hero-search-form input::placeholder {
    color: rgba(32,33,36,.6);
}
.hero-search-form button {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f1f3f4;
    color: var(--ink);
    cursor: pointer;
    transition: background .24s var(--ease), color .24s var(--ease), transform .24s var(--ease), box-shadow .24s var(--ease);
}
.hero-search-form button:hover,
.hero-search-form:focus-within button {
    background: var(--red);
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(255,31,31,.22);
}
.hero-search-form button span {
    width: 9px;
    height: 9px;
    border-top: 2.5px solid currentColor;
    border-right: 2.5px solid currentColor;
    transform: translateX(-1px) rotate(45deg);
}
.button.primary { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 10px 28px rgba(255,31,31,.22); }
.button.primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.button.ghost { background: #fff; color: var(--ink); }
.button.small { min-height: 38px; padding: 0 14px; font-size: 13px; }
.button[href*="wa.me"],
.product-actions a[href*="wa.me"] {
    background: var(--wa);
    border-color: var(--wa);
    color: #fff;
    box-shadow: 0 10px 28px rgba(37,211,102,.2);
}
.button[href*="wa.me"]:hover,
.product-actions a[href*="wa.me"]:hover {
    background: var(--wa-dark);
    border-color: var(--wa-dark);
    color: #fff;
}

.hero-stage {
    position: relative;
    width: min(920px, 100%);
    margin: 0 auto;
    padding: 0 0 20px;
    transform: translateY(0);
    transition: transform .15s linear;
}
.banner-bleed {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}
.banner-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 14vw;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.banner-carousel::-webkit-scrollbar { display: none; }
.banner-slide-card {
    position: relative;
    flex: 0 0 38vw;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    border-radius: 26px;
    overflow: hidden;
    scroll-snap-align: center;
    background: #dfe5ef;
    --popup-bg: #d8e7ff;
    --popup-ink: #1f2937;
}
.banner-slide-card[data-popup-color="sky"] { --popup-bg: #d8e7ff; --popup-ink: #1f2937; }
.banner-slide-card[data-popup-color="mint"] { --popup-bg: #d9f4e7; --popup-ink: #153b2f; }
.banner-slide-card[data-popup-color="peach"] { --popup-bg: #ffe5d6; --popup-ink: #48281a; }
.banner-slide-card[data-popup-color="lilac"] { --popup-bg: #eadfff; --popup-ink: #2f2350; }
.banner-slide-card[data-popup-color="butter"] { --popup-bg: #fff2c9; --popup-ink: #4a3c0f; }
.banner-slide-card[data-popup-color="rose"] { --popup-bg: #ffdce8; --popup-ink: #4a1f32; }
.banner-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .72s cubic-bezier(.2, 0, 0, 1), filter .72s cubic-bezier(.2, 0, 0, 1);
}
.banner-overlay {
    display: none;
}
.banner-overlay p {
    display: none;
    margin: 0;
    max-width: min(75%, 620px);
    padding: 12px 14px;
    border-radius: 12px;
    color: #fff;
    background: rgba(0,0,0,.38);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.16;
}
.banner-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    margin-top: -28px;
    border: 1px solid rgba(255,255,255,.74);
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    color: #1f2937;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 18px 44px rgba(32,33,36,.18), inset 0 0 0 1px rgba(255,255,255,.45);
    transition: transform .24s var(--ease), background .24s var(--ease), box-shadow .24s var(--ease);
}
.banner-nav:hover { background: #fff; transform: scale(1.04); box-shadow: 0 22px 52px rgba(32,33,36,.24), inset 0 0 0 1px rgba(255,255,255,.65); }
.banner-nav svg, .category-nav svg { width: 26px; height: 26px; }
.banner-nav path, .category-nav path { fill: none; stroke: currentColor; stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round; }
.banner-nav.prev { left: max(18px, calc(14vw - 68px)); }
.banner-nav.next { right: max(18px, calc(14vw - 68px)); }
.banner-progress {
    position: absolute;
    left: 50%;
    bottom: -18px;
    z-index: 4;
    width: min(864px, 64.8vw);
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,31,31,.16);
    transform: translateX(-50%);
}
.banner-progress span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left center;
}
.panel-plus {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 50%;
    background: rgba(255,255,255,.82);
    color: #1a73e8;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(32,33,36,.16), inset 0 0 0 1px rgba(255,255,255,.35);
    backdrop-filter: blur(14px);
    transition: transform .46s cubic-bezier(.2, 0, 0, 1), background .36s cubic-bezier(.2, 0, 0, 1), color .36s cubic-bezier(.2, 0, 0, 1), box-shadow .36s cubic-bezier(.2, 0, 0, 1), border-color .36s cubic-bezier(.2, 0, 0, 1);
}
.panel-plus:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 16px 34px rgba(32,33,36,.2), inset 0 0 0 1px rgba(255,255,255,.45);
}
.panel-plus-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
}
.panel-plus-icon span {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform .48s cubic-bezier(.2, 0, 0, 1), width .48s cubic-bezier(.2, 0, 0, 1), height .48s cubic-bezier(.2, 0, 0, 1), opacity .28s cubic-bezier(.2, 0, 0, 1), border-radius .48s cubic-bezier(.2, 0, 0, 1);
}
.panel-plus-icon span:nth-child(1) {
    width: 18px;
    height: 2.5px;
    transform: translate(-50%, -50%);
}
.panel-plus-icon span:nth-child(2) {
    width: 2.5px;
    height: 18px;
    transform: translate(-50%, -50%);
}
.panel-note {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 30px 26px;
    background: var(--popup-bg);
    color: var(--popup-ink);
    opacity: 0;
    clip-path: circle(0 at calc(100% - 37px) 37px);
    transform: translateY(8px) scale(.985);
    pointer-events: none;
    transition: clip-path .64s cubic-bezier(.2, 0, 0, 1), opacity .36s cubic-bezier(.2, 0, 0, 1), transform .48s cubic-bezier(.2, 0, 0, 1);
}
.panel-note::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255,255,255,.55), transparent 34%),
        radial-gradient(circle at 82% 16%, rgba(255,255,255,.44), transparent 22%);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .52s cubic-bezier(.2, 0, 0, 1), transform .52s cubic-bezier(.2, 0, 0, 1);
}
.panel-note.open {
    opacity: 1;
    clip-path: circle(150% at calc(100% - 37px) 37px);
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.panel-note.open::before {
    opacity: 1;
    transform: translateY(0);
}
.banner-slide-card.is-open img {
    transform: scale(1.035);
    filter: saturate(.92) brightness(.98);
}
.banner-slide-card.is-open .banner-overlay {
    opacity: 0;
    transform: translateY(14px) scale(.98);
    filter: blur(2px);
}
.banner-slide-card.is-open .panel-plus {
    background: rgba(255,255,255,.94);
    border-color: rgba(255,255,255,.94);
    color: var(--popup-ink);
    transform: rotate(90deg) scale(1.03);
    box-shadow: 0 14px 32px rgba(32,33,36,.18), inset 0 0 0 1px rgba(255,255,255,.55);
}
.banner-slide-card.is-open .panel-plus-icon span:nth-child(1) {
    width: 18px;
    transform: translate(-50%, -50%) rotate(45deg);
}
.banner-slide-card.is-open .panel-plus-icon span:nth-child(2) {
    width: 18px;
    height: 2.5px;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.panel-note strong {
    position: relative;
    z-index: 1;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .75;
    transform: translateY(10px);
    transition: opacity .46s cubic-bezier(.2, 0, 0, 1) .08s, transform .46s cubic-bezier(.2, 0, 0, 1) .08s;
}
.panel-note span {
    position: relative;
    z-index: 1;
    color: inherit;
    font-size: clamp(16px, 2vw, 28px);
    font-weight: 800;
    line-height: 1.2;
    word-break: break-word;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .52s cubic-bezier(.2, 0, 0, 1) .14s, transform .52s cubic-bezier(.2, 0, 0, 1) .14s;
}
.panel-note.open strong,
.panel-note.open span {
    opacity: 1;
    transform: translateY(0);
}
.browser-frame {
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 28px 70px rgba(32,33,36,.14);
}
.browser-bar {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    background: #f8fafd;
    border-bottom: 1px solid var(--line);
}
.browser-bar > span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c9cdd3;
}
.browser-bar > span:first-child { background: var(--red); }
.browser-address {
    flex: 1;
    min-width: 0;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    margin-left: 8px;
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.wa-float-card {
    position: fixed;
    right: 28px;
    top: 50%;
    z-index: 16;
    width: 178px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 22px;
    background: rgba(255,255,255,.74);
    backdrop-filter: blur(18px) saturate(1.25);
    box-shadow: 0 22px 60px rgba(32,33,36,.18), inset 0 0 0 1px rgba(255,255,255,.52);
    opacity: 0;
    pointer-events: none;
    transform: translate(18px, -50%) scale(.96);
    transition: opacity .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.wa-float-card.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, -50%) scale(1);
}
.wa-stage-card {
    display: none;
}
.wa-float-card strong { display: block; font-size: 15px; line-height: 1.3; }
.wa-float-card p { margin: 7px 0 11px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.wa-float-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--wa);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(37,211,102,.24);
}
@keyframes wa-float-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.banner-slider {
    position: relative;
    aspect-ratio: 1 / 1;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: var(--soft);
    box-shadow: none;
}
.banner-slide { position: absolute; inset: 0; opacity: 0; transform: translateY(14px) scale(1.015); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.banner-slide.active { opacity: 1; transform: scale(1); }
.banner-slide img, .banner-placeholder { width: 100%; height: 100%; object-fit: cover; }
.banner-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 410px;
    background: radial-gradient(circle at 50% 28%, #fff 0, #fff 24%, #f4f6f8 62%, #ffe9e9 100%);
    color: var(--red);
    font-size: 82px;
    font-weight: 900;
}
.banner-placeholder small {
    color: var(--muted);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.banner-content {
    position: absolute;
    left: 28px;
    bottom: 28px;
    width: min(520px, calc(100% - 56px));
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(14px);
}
.banner-content h2 { margin: 0 0 8px; font-size: 30px; }
.banner-content p { color: var(--muted); line-height: 1.6; }
.banner-content a { color: var(--red); font-weight: 900; }
.slider-dots { position: absolute; right: 22px; bottom: 22px; display: flex; gap: 8px; }
.slider-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: #c7cbd1; }
.slider-dots button.active { width: 28px; border-radius: 999px; background: var(--red); }
.slider-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: rgba(255,255,255,.45);
}
.slider-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--red);
    transition: width .2s linear;
}

.section { padding: 56px 0; }
.catalog-section { padding-top: 16px; }
.section-soft { background: #fafafa; border-top: 1px solid var(--line); }
.section-head { margin-bottom: 24px; }
.skip-link:focus { top: 8px !important; }
.breadcrumb { display: none; }
.eyebrow { margin: 0 0 8px; color: var(--red); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.section-head h2 { margin: 0; font-size: 42px; line-height: 1.28; font-weight: 700; }
.category-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 10px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.category-rail {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.category-nav {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.74);
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    color: #334155;
    display: grid;
    place-items: center;
    cursor: pointer;
    flex: 0 0 auto;
    box-shadow: 0 12px 28px rgba(32,33,36,.12), inset 0 0 0 1px rgba(255,255,255,.45);
    transition: transform .24s var(--ease), background .24s var(--ease), box-shadow .24s var(--ease);
}
.category-nav:hover { background: #fff; transform: translateY(-1px) scale(1.04); box-shadow: 0 16px 36px rgba(32,33,36,.18), inset 0 0 0 1px rgba(255,255,255,.65); }
.category-grid::-webkit-scrollbar {
    display: none;
}
#kategori.section {
    padding-top: 12px;
    scroll-margin-top: 80px;
}
#unggulan, #bisnis, #service, #partner { scroll-margin-top: 80px; }
@media (max-width: 820px) {
    #unggulan, #bisnis, #service, #partner { scroll-margin-top: 100px; }
    #kategori { scroll-margin-top: 55px; }
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
    gap: 12px;
}
.category-tile {
    flex: 0 0 132px;
    min-height: 160px;
    padding: 10px 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    transition: .24s var(--ease);
    scroll-snap-align: start;
}
.category-tile:hover, .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #ffd1d1; }
.category-tile span { font-size: 11px; font-weight: 900; line-height: 1.2; }
.category-tile > span:last-child {
    min-height: 24px;
    display: grid;
    align-items: center;
}
.category-visual {
    width: 100%;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    margin-bottom: 6px;
}
.category-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.category-fallback {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e9edf2;
    box-shadow: 14px 0 0 #dfe5ec, -14px 0 0 #dfe5ec;
}
.category-tile strong { color: var(--red); }
.featured-footer {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}
.featured-all-button.button.primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 8px 28px rgba(255,31,31,.25);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}
.featured-all-button.button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255,31,31,.35);
}
.featured-all-button.button.primary::after {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    border-radius: 1px;
    transform: rotate(45deg);
    transition: transform .2s;
}
.featured-all-button.button.primary:hover::after {
    transform: translateX(4px) rotate(45deg);
}

/* ISA SOLUTION CARDS START: paired with index.php section; remove both to undo */
.isa-solution-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff7f7 0%, #fff 48%, #fff8f8 100%);
}
.isa-solution-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 15%, rgba(255,30,30,.14), transparent 28%), radial-gradient(circle at 88% 8%, rgba(165,14,14,.1), transparent 24%);
    pointer-events: none;
}
.isa-solution-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.isa-solution-card {
    min-height: 285px;
    padding: 24px;
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 28px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 24px 60px rgba(32,33,36,.1);
}
.isa-solution-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}
.isa-solution-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #ffe3e3;
    color: var(--red);
}
.isa-solution-icon svg { width: 30px; height: 30px; }
.isa-solution-icon path { fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.isa-solution-title h3 {
    margin: 0;
    color: #3f454d;
    font-size: 18px;
    line-height: 1.18;
}
.isa-solution-panel {
    min-height: 150px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
}
.isa-check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 13px;
}
.isa-check-list li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--red);
    font-weight: 900;
}
.isa-chart-panel { display: grid; gap: 12px; align-content: center; }
.isa-chart-panel div { display: grid; grid-template-columns: 1fr; gap: 5px; }
.isa-chart-panel span { width: var(--w); height: 15px; border-radius: 999px; background: linear-gradient(90deg, var(--red), #ff8a8a); }
.isa-chart-panel b { color: var(--muted); font-size: 11px; }
.isa-contact-panel { display: grid; gap: 10px; }
.isa-contact-panel div {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid #edf0f2;
    border-radius: 999px;
}
.isa-contact-panel span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffecec;
    color: var(--red);
    font-weight: 900;
}
.isa-contact-panel b { color: #3f454d; font-size: 12px; }
.isa-contact-panel small { color: var(--muted); font-size: 10px; }
@media (max-width: 1180px) {
    .isa-solution-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .isa-solution-grid { grid-template-columns: 1fr; }
}
/* ISA SOLUTION CARDS END */

.service-section {
    overflow: hidden;
    background: #f5f5f7;
}
.service-section .section-head {
    text-align: left;
}
.service-section .section-head p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}
.service-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 320px);
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 max(24px, calc((100vw - 1160px) / 2)) 16px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.service-rail::-webkit-scrollbar { display: none; }
.service-card {
    scroll-snap-align: start;
    min-height: 460px;
    padding: 12px 12px 22px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(32,33,36,.1);
}
.service-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffe5e5, #fff);
}
.service-card-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffe5e5, #fff);
}
.service-card h3 {
    margin: 20px 10px 8px;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.15;
}
.service-card p {
    margin: 0 10px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.42;
}
@media (min-width: 1180px) {
    .service-rail { grid-auto-columns: minmax(280px, 1fr); }
}
@media (max-width: 560px) {
    .service-rail {
        grid-auto-columns: minmax(245px, 78vw);
        gap: 18px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .service-card { min-height: 410px; border-radius: 24px; }
    .service-card h3 { font-size: 18px; }
}

.product-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    transition: .24s var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    text-align: left;
}
.seo-product-link {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.product-media {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #fff, #f3f4f6);
    color: var(--red);
    font-size: 34px;
    font-weight: 900;
}
.product-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    background: #fff;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
}
.product-body {
    padding: 10px;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 5px;
}
.product-category { margin: 0; color: var(--red); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.product-body h3 { margin: 0; font-size: 14px; line-height: 1.32; }
.product-body h3 a {
    display: -webkit-box;
    min-height: 40px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-body h3 span {
    display: -webkit-box;
    min-height: 37px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-body p {
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.42;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
}
.product-actions .button.small {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
}
.product-view-button {
    cursor: zoom-in;
}

.page-hero { padding: 64px 0 28px; text-align: center; }
.page-hero.compact h1 { font-size: 58px; }
.catalog-toolbar { margin-bottom: 22px; }
.catalog-shell {
    position: relative;
    z-index: 30;
    overflow: visible;
    margin-top: 8px;
    margin-bottom: 22px;
    padding: 10px;
    border: 1px solid rgba(255,31,31,.14);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,246,246,.92));
    box-shadow: 0 18px 44px rgba(32,33,36,.09), inset 0 1px 0 rgba(255,255,255,.9);
}
.search-form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto;
    gap: 10px;
    align-items: center;
}
.products-filter-bar {
    position: relative;
    z-index: 31;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(170px, 220px) minmax(170px, 220px);
    gap: 8px;
    align-items: center;
}
.products-filter-bar .search-input-wrap {
    position: relative;
    margin: 0;
    min-width: 0;
    min-height: 48px;
    background: #fff;
}
.search-go-button.button.primary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff1f1f, #ff6b35 55%, #ff1f1f);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .02em;
    box-shadow: 0 12px 28px rgba(255,31,31,.28), inset 0 1px 0 rgba(255,255,255,.32);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease);
}
.search-go-button.button.primary::after {
    content: "";
    position: absolute;
    inset: -40% auto -40% -60%;
    width: 48%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
    transform: skewX(-18deg);
    transition: left .45s var(--ease);
}
.search-go-button.button.primary:hover {
    transform: translateY(-2px);
    filter: saturate(1.1);
    box-shadow: 0 16px 34px rgba(255,31,31,.36), inset 0 1px 0 rgba(255,255,255,.38);
}
.search-go-button.button.primary:active {
    transform: translateY(0) scale(.98);
}
.search-go-button.button.primary:hover::after {
    left: 115%;
}
.products-filter-bar select {
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255,31,31,.1);
    background: rgba(255,255,255,.88);
    font-size: 13px;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.products-filter-bar select:disabled {
    opacity: .55;
}
.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f8fafd;
    transition: background .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.search-input-wrap:focus-within {
    background: #fff;
    border-color: #ffd1d1;
    box-shadow: 0 8px 24px rgba(255,31,31,.08);
}
.search-input-wrap span {
    width: 15px;
    height: 15px;
    border: 2px solid var(--muted);
    border-radius: 50%;
    position: relative;
}
.search-input-wrap span::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -4px;
    width: 7px;
    height: 2px;
    border-radius: 999px;
    background: var(--muted);
    transform: rotate(45deg);
}
.search-input-wrap input {
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
}
.search-input-wrap input:focus {
    outline: none;
}
.catalog-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 80;
    display: none;
    padding: 8px;
    border: 1px solid rgba(255,31,31,.14);
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 44px rgba(32,33,36,.14);
}
.catalog-suggestions.active {
    display: grid;
    gap: 4px;
}
.catalog-suggestions button {
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}
.catalog-suggestions button:hover {
    background: rgba(255,31,31,.08);
    color: var(--red);
}
.catalog-select-filter {
    margin-top: 12px;
    display: grid;
    grid-template-columns: auto minmax(180px, 260px) auto minmax(180px, 260px);
    gap: 8px 12px;
    align-items: center;
}
.catalog-select-filter label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.catalog-select-filter select {
    min-height: 42px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 13px;
    font-weight: 800;
}
.catalog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}
.catalog-count {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}
.per-page-form {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.per-page-form label {
    color: var(--muted);
    font-size: 16px;
    font-weight: 800;
}
.per-page-form select {
    width: 92px;
    min-height: 46px;
    border-radius: 999px;
    padding: 0 14px;
    border: 1px solid var(--line);
    background: #f1f3f4;
    font-size: 16px;
    font-weight: 900;
    color: var(--ink);
}
.catalog-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
}
.catalog-pagination-wrap {
    margin-top: 24px;
}
.catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.catalog-pagination a {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #f1f3f4;
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
    transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.catalog-pagination a:hover {
    transform: translateY(-1px);
    border-color: #ffd1d1;
    box-shadow: 0 10px 20px rgba(32,33,36,.08);
}
.catalog-pagination .page-number.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}
.catalog-pagination .page-control.disabled {
    pointer-events: none;
    opacity: .42;
}
input, select, textarea {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}
textarea { padding-top: 12px; }
.empty-state, .contact-panel {
    grid-column: 1 / -1;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    background: #fff;
}
.product-detail {
    padding: 40px 0 80px;
    background: #fff;
}
.detail-shell {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(32,33,36,.06);
}
.detail-grid {
    display: grid;
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    padding: 32px;
}
.detail-gallery {
    position: sticky;
    top: 90px;
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 10px;
    min-width: 0;
}
.detail-media {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: #fafafa;
    color: var(--red);
    font-size: 84px;
    font-weight: 900;
    box-shadow: 0 2px 8px rgba(32,33,36,.04);
}
.detail-media-main {
    width: 100%;
    margin: 0;
}
.detail-media img {
    width: 100%;
    height: 100%;
    max-height: 60vh;
    object-fit: contain;
    object-position: center;
    padding: 12px;
    background: #fff;
}
.detail-thumb-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}
.detail-thumb {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(32,33,36,.06);
    transition: border-color .2s, box-shadow .2s;
}
.detail-thumb:hover {
    border-color: #ddd;
    box-shadow: 0 4px 12px rgba(32,33,36,.1);
}
.detail-thumb.is-active {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(255,31,31,.15);
}
.detail-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    padding: 6px;
    background: #fff;
}
.detail-copy {
    min-width: 0;
    padding-top: 4px;
}
.detail-copy .eyebrow {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 4px 14px;
    border-radius: 999px;
    background: #f5f5f5;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.detail-copy h1 {
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--ink);
}
.detail-copy p { color: var(--muted); line-height: 1.7; }
.detail-copy .hero-actions { justify-content: flex-start; }
.detail-back { display: none; }
.detail-back-float {
    position: fixed;
    left: 18px;
    top: 84px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: var(--ink);
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 4px 16px rgba(32,33,36,.12);
    backdrop-filter: blur(8px);
    transition: transform .2s, box-shadow .2s;
}
.detail-back-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(32,33,36,.16);
}
.detail-back-float span:first-child {
    display: block;
    transform: translateX(-1px);
    line-height: 1;
}
.product-info-block {
    margin-top: 16px;
    padding: 20px 24px;
    border-radius: 12px;
    background: #fafafa;
}
.product-info-block h2 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}
.product-info-block p,
.product-info-block pre {
    white-space: pre-wrap;
    font: inherit;
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
}
.contact-panel { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-actions a[href*="wa.me"],
.contact-actions a[href^="mailto"] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    transition: transform .2s, box-shadow .2s;
}
.contact-actions a[href*="wa.me"] {
    box-shadow: 0 8px 28px rgba(37,211,102,.25);
}
.contact-actions a[href*="wa.me"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(37,211,102,.35);
}
.contact-actions a[href^="mailto"] {
    background: #fff;
    color: #202124;
    border: 1px solid #dadce0;
    box-shadow: 0 4px 12px rgba(32,33,36,.08);
}
.contact-actions a[href^="mailto"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(32,33,36,.14);
    border-color: #bdc1c6;
}
.company-profile-band,
.company-detail-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(32,33,36,.05);
}
.company-profile-band {
    padding: 28px;
}
.company-profile-band h2,
.company-detail-grid h2 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.15;
}
.company-profile-band p,
.company-detail-grid p {
    color: var(--muted);
    line-height: 1.7;
}
.company-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.company-detail-grid article {
    padding: 24px;
}
.partner-section {
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #f7f7f8 100%);
    border-top: 1px solid rgba(226,232,240,.7);
}
.partner-section .section-head {
    margin-bottom: 18px;
    text-align: center;
}
.partner-section .section-head h2 { font-size: 34px; }
.partner-marquee {
    overflow: hidden;
    padding: 8px 0 16px;
    background: transparent;
    mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.partner-track {
    display: flex;
    width: max-content;
    --partner-distance: 0px;
    --partner-duration: 24s;
    animation: partner-run var(--partner-duration) linear infinite;
    animation-play-state: paused;
    will-change: transform;
}
.partner-track.is-ready {
    animation-play-state: running;
}
.partner-group {
    display: flex;
    flex: 0 0 auto;
    gap: 42px;
    padding: 10px 21px;
}
.partner-logo {
    display: grid;
    place-items: center;
    width: 176px;
    height: 90px;
    opacity: .72;
    transition: opacity .22s var(--ease), transform .22s var(--ease), filter .22s var(--ease);
}
.partner-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}
.partner-logo:hover img {
    filter: grayscale(0) saturate(1) contrast(1);
}
.partner-logo a {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}
.partner-logo img {
    /* PARTNER LOGO BALANCE START: undo by restoring width/height/max values below */
    width: auto;
    height: auto;
    max-width: 221px;
    max-height: 74px;
    /* PARTNER LOGO BALANCE END */
    object-fit: contain;
    padding: 2px;
    filter: grayscale(1) saturate(0) contrast(1.08);
    transition: filter .22s var(--ease);
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}
@keyframes partner-run {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-1 * var(--partner-distance))); }
}

.site-footer {
    background: #2c2c2c;
    color: rgba(255,255,255,.85);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    align-items: start;
}
.footer-brand-col { max-width: 380px; }
.footer-brand-col .brand { font-size: 22px; font-weight: 800; margin-bottom: 14px; }
.site-footer .footer-about { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.7; margin: 0; }
.footer-heading {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.35);
    margin: 0 0 18px;
}
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
    display: inline-flex;
    align-self: flex-start;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    transition: color .2s;
}
.footer-nav a:hover { color: #fff; }
.footer-contact-col p { margin: 0 0 10px; }
.footer-contact-col { padding-top: 6px; }
.footer-address {
    display: grid;
    gap: 3px;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
}
.footer-address strong { color: rgba(255,255,255,.9); font-style: normal; }
.footer-address .footer-contact-line {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    margin-top: 9px;
}
.footer-address .footer-contact-line + .footer-contact-line { margin-top: 4px; }
.footer-address .footer-contact-line svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    justify-self: center;
}
.footer-address .footer-contact-line path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.footer-email {
    display: grid;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    transition: color .2s;
}
.footer-email:hover { color: #fff; }
.footer-wa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-height: 34px;
    margin-top: 11px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--wa);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(37,211,102,.22);
    transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.footer-wa-button:hover {
    background: var(--wa-dark);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(18,140,74,.26);
}
.footer-map {
    width: 100%;
    height: 150px;
    border: 0;
    border-radius: 18px;
    filter: grayscale(.18) contrast(.98);
    box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
@media (min-width: 821px) {
    .footer-grid {
        align-items: start;
        gap: 42px;
    }
    .footer-brand-col .brand {
        margin-bottom: 8px;
    }
    .footer-contact-col {
        padding-top: 0;
    }
    .footer-map-col {
        padding-top: 0;
    }
    .footer-map {
        height: 142px;
    }
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
}
.footer-copyright-br { display: none; }
.wa-mobile-fab.hide { opacity: 0; pointer-events: none; }
.scroll-top-fab {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 41;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    color: var(--ink);
    font-weight: 900;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(.9);
    box-shadow: 0 18px 44px rgba(32,33,36,.2), inset 0 0 0 1px rgba(255,255,255,.45);
    transition: opacity .28s var(--ease), transform .28s var(--ease), background .24s var(--ease), box-shadow .24s var(--ease);
}
.scroll-top-fab svg {
    width: 24px;
    height: 24px;
}
.scroll-top-fab path {
    fill: none;
    stroke: currentColor;
    stroke-width: 3.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.scroll-top-fab.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.scroll-top-fab:hover { background: #fff; box-shadow: 0 22px 52px rgba(32,33,36,.24), inset 0 0 0 1px rgba(255,255,255,.65); }
@media (min-width: 821px) {
    .scroll-top-fab {
        left: 28px;
        bottom: 42px;
        width: 52px;
        height: 52px;
    }
    .scroll-top-fab svg {
        width: 27px;
        height: 27px;
    }
}
@media (max-width: 560px) {
    .footer-bottom { text-align: center; padding: 14px 0; }
    .footer-copyright-br { display: block; }
    .footer-grid { padding-bottom: 24px; gap: 24px; }
    .site-footer { padding-top: 40px; }
    .footer-map-col {
        margin-top: -14px;
    }
    .footer-map-col .footer-heading {
        display: none;
    }
    .footer-map {
        height: 132px;
        border-radius: 14px;
    }
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: 13px; margin: 0; }
.footer-logo { display: block; width: 40px; height: auto; flex: 0 0 auto; }

.quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: grid;
    place-items: center;
    padding: 18px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s var(--ease);
}
.quick-view-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.quick-view-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(32,33,36,.52);
    backdrop-filter: blur(12px);
}
.quick-view-panel {
    position: relative;
    box-sizing: border-box;
    width: min(860px, calc(100vw - 36px));
    height: min(560px, calc(100vh - 36px));
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 440px) minmax(0, 360px);
    grid-template-rows: minmax(0, 1fr) 74px;
    gap: 14px 18px;
    padding: 18px;
    border: 1px solid rgba(218,220,224,.9);
    border-radius: 24px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 70px rgba(60,64,67,.28);
    transform: translateY(18px) scale(.98);
    transition: transform .28s var(--ease);
}
.quick-view-modal.open .quick-view-panel {
    transform: translateY(0) scale(1);
}
.quick-view-panel.has-gallery {
    grid-template-columns: minmax(0, 440px) minmax(0, 360px);
}
.quick-view-close {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(218,220,224,.95);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 10px 26px rgba(32,33,36,.18);
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    cursor: pointer;
}
.quick-view-media {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 1 / 1;
    align-self: center;
    justify-self: center;
    width: min(100%, 410px);
    height: auto;
    max-height: none;
    border: 1px solid #e8eaed;
    border-radius: 18px;
    background: #fff;
    cursor: zoom-in;
}
.quick-view-media::after,
.detail-media-main::after {
    content: "ISA Cleaning";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%) rotate(-18deg);
    content: "ISACLEANING.CO.ID";
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(96,99,103,.36);
    font-size: clamp(18px, 3vw, 34px);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255,255,255,.42), 0 0 10px rgba(0,0,0,.12);
    box-shadow: none;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    mix-blend-mode: normal;
}
.quick-view-media.zoomed {
    cursor: zoom-out;
}
.quick-view-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    transition: transform .22s var(--ease);
    transform-origin: center center;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
}
.product-card,
.quick-view-modal,
.product-detail {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
.quick-view-media.zoomed img {
    transform: scale(1.85);
}
.quick-view-media span {
    color: var(--red);
    font-size: 68px;
    font-weight: 900;
}
.quick-view-gallery {
    grid-column: 1;
    grid-row: 2;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    padding: 0 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.quick-view-gallery::-webkit-scrollbar { display: none; }
.quick-view-gallery button {
    width: 64px;
    flex: 0 0 64px;
    aspect-ratio: 1 / 1;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.quick-view-gallery button:hover,
.quick-view-gallery button.active {
    transform: translateY(-1px);
    border-color: var(--red);
    box-shadow: 0 8px 18px rgba(32,33,36,.08);
}
.quick-view-gallery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 7px;
}
.quick-view-info {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
    min-height: 0;
    overflow-y: auto;
    padding: 8px 6px 8px 2px;
    border-top: 0;
    border-left: 1px solid #edf0f2;
    padding-left: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.quick-view-info::-webkit-scrollbar { display: none; }
.quick-view-info > p:first-child {
    margin: 0 0 8px;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.quick-view-info h2 {
    margin: 0 0 12px;
    font-size: 25px;
    line-height: 1.12;
}
.quick-view-info p {
    color: var(--muted);
    line-height: 1.62;
}
.quick-view-info p[data-product-modal-summary] {
    margin-bottom: 14px;
}
.quick-view-details {
    display: grid;
    gap: 10px;
}
.quick-view-details section {
    padding-top: 10px;
    border-top: 1px solid #edf0f2;
}
.quick-view-details h3 {
    margin: 0 0 6px;
    font-size: 13px;
    color: var(--ink);
}
.quick-view-details p {
    margin: 0;
    white-space: pre-line;
}
.modal-open {
    overflow: hidden;
}

@media (min-width: 821px) and (max-width: 980px) {
    .quick-view-panel,
    .quick-view-panel.has-gallery {
        width: min(520px, calc(100vw - 28px));
        height: min(780px, calc(100vh - 28px));
        grid-template-columns: 1fr;
        grid-template-rows: auto 72px minmax(0, 1fr);
        gap: 12px;
    }
    .quick-view-media {
        grid-column: 1;
        grid-row: 1;
        width: min(100%, 430px);
    }
    .quick-view-gallery {
        grid-column: 1;
        grid-row: 2;
    }
    .quick-view-info {
        grid-column: 1;
        grid-row: 3;
        border-left: 0;
        border-top: 1px solid #edf0f2;
        padding: 10px 4px 4px;
    }
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 820px) {
    .brand { font-size: 22px; }
    .brand-logo { width: 38px; }
    .nav-toggle {
        display: inline-flex;
        min-width: 104px;
        min-height: 44px;
    }
    .nav-links {
        position: absolute;
        z-index: 121;
        left: 14px;
        right: 14px;
        top: 76px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        padding: 10px;
        background: #fff;
        border: 1px solid rgba(228,231,236,.92);
        border-radius: 20px;
        box-shadow: 0 18px 42px rgba(32,33,36,.16);
        backdrop-filter: none;
        opacity: 0;
        transform: translateY(-10px) scale(.965);
        transform-origin: top right;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: opacity .34s var(--ease), transform .34s var(--ease), max-height .34s var(--ease), box-shadow .34s var(--ease);
    }
    .nav-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        border-radius: 14px;
        padding: 0 14px;
        opacity: 0;
        transform: translateY(-4px);
        transition: opacity .26s var(--ease), transform .26s var(--ease), background .22s var(--ease), color .22s var(--ease);
    }
    .nav-links a:hover {
        background: #f1f3f4;
    }
    .nav-links.open {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
        max-height: 320px;
    }
    .nav-links.open a {
        opacity: 1;
        transform: translateY(0);
    }
    .nav-links.open a:nth-child(2) { transition-delay: .035s; }
    .nav-links.open a:nth-child(3) { transition-delay: .07s; }
    .nav-links.open a:nth-child(4) { transition-delay: .105s; }
    .nav-links .nav-cta { display: none; }
    .partner-group {
        gap: 34px;
        padding-inline: 17px;
    }
    .pill-tabs {
        top: 72px;
        left: 50%;
        width: calc(100vw - 24px);
        max-width: 430px;
        margin-bottom: 24px;
        border-radius: 999px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        transform: translateX(-50%);
        padding: 7px;
        gap: 6px;
        border: 1px solid var(--line);
        background: rgba(255,255,255,.9);
        box-shadow: 0 10px 28px rgba(32,33,36,.08);
    }
    .pill-tabs.reveal,
    .pill-tabs.reveal.visible {
        transform: translateX(-50%);
    }
    .pill-tabs::-webkit-scrollbar { display: none; }
    .pill-tabs a {
        flex: 1 1 0;
        min-width: 0;
        padding: 11px 10px;
        font-size: 15px;
        border-radius: 999px;
    }
    .hero-copy h1 { font-size: 44px; }
    .hero-badge {
        min-width: 104px;
        height: 46px;
        min-height: 0;
        padding: 0 16px;
        font-size: 36px;
    }
    .morph-isa-3m .text-wrap {
        width: 64px;
        height: 30px;
    }
    .morph-isa-3m .text-isa {
        font-size: 30px;
    }
    .morph-isa-3m .text-3m-logo {
        width: 48px;
    }
    .hero-brand-row {
        gap: 12px;
        margin-top: 14px;
    }
    .hero-actions {
        margin-top: 20px;
    }
    .hero-actions::before {
        width: calc(100vw - 18px);
        height: 76px;
        background-size: 20px 20px;
        opacity: .28;
    }
    .hero-search-form {
        grid-template-columns: 20px minmax(0, 1fr) 34px;
        gap: 9px;
        width: min(416px, calc(100vw - 34px));
        min-height: 48px;
        padding: 5px 6px 5px 15px;
        border-width: 1.5px;
    }
    .hero-search-form:hover,
    .hero-search-form:focus-within {
        width: min(448px, calc(100vw - 24px));
    }
    .hero-search-icon {
        width: 16px;
        height: 16px;
        border-width: 2px;
    }
    .hero-search-form input {
        min-height: 36px;
        font-size: 16px;
    }
    .hero-search-form button {
        width: 34px;
        height: 34px;
    }
    .hero-stage { width: 100%; }
    .banner-carousel {
        gap: 12px;
        padding: 0 9vw;
    }
    .banner-slide-card {
        flex: 0 0 82vw;
        aspect-ratio: 1 / 1;
        border-radius: 18px;
    }
    .banner-overlay p {
        font-size: 24px;
        max-width: 72%;
    }
    .banner-nav {
        width: 44px;
        height: 44px;
        margin-top: -22px;
        font-size: 19px;
    }
    .banner-nav.prev { left: 8px; }
    .banner-nav.next { right: 8px; }
    .banner-progress {
        bottom: -16px;
        width: 73.8vw;
        height: 5px;
    }
    .panel-plus {
        width: 42px;
        height: 42px;
        top: 10px;
        right: 10px;
    }
    .browser-frame { border-radius: 18px; }
    .wa-float-card { display: none; }
    .wa-stage-card { display: none; }
    .wa-mobile-fab { display: inline-flex !important; }
    #kategori .category-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        overflow: visible;
        padding: 0;
        scroll-snap-type: none;
    }
    #kategori .category-rail {
        display: block;
        width: min(100% - 24px, 560px);
        margin: 0 auto;
        padding: 0;
    }
    #kategori .category-nav {
        display: none;
    }
    #kategori .category-tile {
        border: none;
        min-width: 0;
        min-height: 0;
        padding: 8px 8px 12px;
        scroll-snap-align: none;
        justify-content: flex-start;
        gap: 14px;
    }
    #kategori .category-tile span {
        font-size: 11px;
        line-height: 1.2;
    }
    #kategori .category-visual {
        height: 72px;
        margin-bottom: 0;
    }
    #kategori .category-visual img {
        border: none;
        border-radius: 4px;
    }
    .product-detail {
        padding: 16px 0 64px;
    }
    .detail-shell {
        width: min(100% - 24px, 560px);
        border-radius: 12px;
        box-shadow: none;
    }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand-col { max-width: none; }
    .detail-grid, .contact-panel, .company-detail-grid { grid-template-columns: 1fr; }
    .detail-grid {
        gap: 20px;
        padding: 16px;
    }
    .detail-gallery {
        position: static;
        justify-items: center;
        padding-top: 0;
    }
    .detail-media-main {
        width: min(100%, 380px);
        max-width: 380px;
    }
    .detail-thumb-grid {
        width: min(100%, 380px);
        max-width: 380px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
    }
    .detail-back-float {
        left: 12px;
        top: 74px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .product-body { padding: 10px; }
    .product-category { font-size: 10px; }
    .product-body h3 { font-size: 13px; }
    .product-body p { font-size: 12px; }
    .product-actions .button.small {
        min-height: 32px;
        padding: 0 10px;
        font-size: 11px;
    }
    .quick-view-modal {
        padding: 8px;
    }
    .quick-view-panel {
        width: 100%;
        max-width: 430px;
        height: calc(100vh - 16px);
        height: calc(100dvh - 16px);
        max-height: 760px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    .quick-view-close {
        position: sticky;
        top: 8px;
        right: 8px;
        align-self: flex-end;
        flex: 0 0 auto;
        margin-bottom: -52px;
    }
    .quick-view-panel.has-gallery { grid-template-columns: 1fr; }
    .quick-view-gallery {
        max-height: none;
        flex: 0 0 auto;
        padding: 0 4px 8px;
    }
    .quick-view-media {
        flex: 0 0 auto;
        margin-top: 0;
        width: min(100%, 360px);
        justify-self: center;
        align-self: center;
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }
    .quick-view-media img {
        padding: 12px;
        object-fit: contain;
    }
    .quick-view-media::after,
    .detail-media-main::after {
        font-size: clamp(24px, 8vw, 38px);
        letter-spacing: .06em;
    }
    .quick-view-info {
        flex: 0 0 auto;
        min-height: auto;
        overflow: visible;
        padding: 8px 2px 4px;
        border-top: 1px solid #edf0f2;
        border-left: 0;
    }
    .quick-view-info h2 {
        font-size: 24px;
    }
    .search-form { grid-template-columns: 1fr; }
    .products-filter-bar {
        grid-template-columns: minmax(0, 1fr) auto;
    }
    .catalog-shell {
        border-radius: 28px;
    }
    .products-filter-bar select {
        grid-column: span 2;
    }
    .search-go-button.button.primary {
        min-height: 38px;
        padding: 0 16px;
        font-size: 13px;
    }
    .catalog-select-filter {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .catalog-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .solution-grid {
        grid-template-columns: 1fr;
    }
    .banner-slider { aspect-ratio: 1 / 1; }
    .banner-content { left: 16px; right: 16px; bottom: 16px; width: auto; }
    .page-hero.compact h1 { font-size: 42px; }
    .section-head h2 { font-size: 32px; }
    .detail-copy h1 { font-size: 34px; }
    .detail-copy .eyebrow { margin-bottom: 8px; font-size: 10px; }
    .product-info-block {
        margin-top: 12px;
        padding: 14px;
    }
    .product-info-block h2 { font-size: 18px; }
    .product-info-block p,
    .product-info-block pre {
        font-size: 14px;
        line-height: 1.62;
    }
    .detail-media img {
        padding: 8px;
    }
}
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.solution-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 18px;
}
.solution-grid h3 {
    margin: 0 0 8px;
    font-size: 20px;
}
.solution-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

@media (min-width: 821px) and (max-width: 1320px) {
    .wa-float-card {
        right: 18px;
        bottom: 18px;
    }
}

@media (max-width: 480px) {
    .hero-copy h1 { font-size: 38px; }
    .hero-copy p, .page-hero p, .lead { font-size: 16px; }
    .banner-placeholder { font-size: 54px; }
    .banner-content h2 { font-size: 24px; }
    .hero-badge {
        min-width: 94px;
        height: 40px;
        padding: 0 14px;
        font-size: 31px;
    }
    .morph-isa-3m .text-wrap {
        width: 56px;
        height: 26px;
    }
    .morph-isa-3m .text-isa {
        font-size: 26px;
    }
    .morph-isa-3m .text-3m-logo {
        width: 42px;
    }
    .morph-isa-3m .text-3m-logo {
        width: 50px;
    }
    .hero-brand-row {
        flex-wrap: wrap;
        gap: 9px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .morph-isa-3m .text-isa,
    .morph-isa-3m .text-3m-logo,
    .morph-isa-3m span {
        animation: none !important;
    }
    .morph-isa-3m .text-isa {
        position: relative;
        opacity: 1;
        transform: none;
        filter: none;
    }
    .morph-isa-3m .text-3m-logo {
        display: none;
    }
}
.wa-mobile-fab {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--wa);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(.9);
    box-shadow: 0 12px 28px rgba(18,140,74,.35);
    transition: opacity .28s var(--ease), transform .28s var(--ease), background .24s var(--ease), box-shadow .24s var(--ease);
    will-change: opacity, transform;
}
.wa-mobile-fab.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* ===== Company Profile — Material Design 3 ===== */

/* --- Hero override --- */
.company-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 64px;
    background: linear-gradient(135deg, rgba(217,48,37,.85) 0%, rgba(165,14,14,.88) 100%);
}
.company-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url('../banners/profile-hero-bg.webp') center / cover no-repeat,
        radial-gradient(circle at 20% 80%, rgba(255,255,255,.06) 0%, transparent 50%);
    background-blend-mode: overlay;
    opacity: .2;
    pointer-events: none;
}
.company-hero .container { position: relative; z-index: 2; }
.company-hero .eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,.15);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}
.company-hero h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
}
.company-hero .hero-sub {
    margin: 12px 0 0;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
}
.company-hero p:last-child {
    margin: 8px 0 0;
    font-size: 15px;
    color: rgba(255,255,255,.7);
}

/* --- Section base --- */
.cp-section {
    padding: 72px 0;
    position: relative;
}
.cp-section:nth-child(even) {
    background: #f8fafd;
}

/* --- Section header — Material chip style --- */
.cp-section-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}
.cp-section-title {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.15;
}
.cp-section-sub {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 15px;
}

/* --- Quote — Material card with tint --- */
.cp-quote {
    position: relative;
    background: linear-gradient(135deg, #e8f0fe 0%, #d2e3fc 100%);
    padding: 24px 28px 24px 32px;
    border-radius: 20px;
    color: #174ea6;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 32px;
    box-shadow: 0 4px 16px rgba(26,115,232,.1);
    border-left: 4px solid #1a73e8;
}
.cp-quote::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 64px;
    font-weight: 800;
    color: rgba(26,115,232,.12);
    line-height: 1;
    font-family: Georgia, serif;
}

/* --- Body text --- */
.cp-body {
    color: #3c4043;
    font-size: 16px;
    line-height: 1.8;
}
.cp-body p { margin: 0 0 18px; }
.cp-body p:last-child { margin-bottom: 0; }

/* --- Timeline — Vertical stepper --- */
.cp-timeline {
    position: relative;
    margin: 44px 0 0;
    padding-left: 48px;
}
.cp-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dadce0;
}
.cp-milestone {
    position: relative;
    padding: 0 0 36px;
}
.cp-milestone:last-child { padding-bottom: 0; }
.cp-milestone::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d93025;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #d93025;
    z-index: 2;
}
.cp-milestone::after {
    content: '';
    position: absolute;
    left: -22px;
    top: 10px;
    width: 20px;
    height: 2px;
    background: #dadce0;
}
.cp-milestone-year {
    font-family: Manrope, sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #d93025;
    margin-bottom: 8px;
    letter-spacing: -.3px;
}
.cp-milestone-desc {
    background: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    font-size: 15px;
    color: #3c4043;
    line-height: 1.6;
    box-shadow: 0 1px 8px rgba(60,64,67,.06);
    border: 1px solid #e8eaed;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.cp-milestone-desc:hover {
    box-shadow: 0 4px 20px rgba(60,64,67,.1);
}

/* --- Info Grid — Material list --- */
.cp-info-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(60,64,67,.08);
    border: 1px solid #e8eaed;
}
.cp-info-label,
.cp-info-value {
    padding: 14px 20px;
    font-size: 15px;
    border-bottom: 1px solid #f1f3f4;
    transition: background .2s;
}
.cp-info-label {
    background: #f8fafd;
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.cp-info-value {
    color: var(--ink);
    font-weight: 500;
}
.cp-info-value a {
    color: #1a73e8;
    text-decoration: none;
    transition: color .2s;
}
.cp-info-value a:hover { color: #174ea6; }
.cp-info-label:nth-last-child(2),
.cp-info-value:last-child { border-bottom: 0; }
.cp-info-grid > div:hover { background: transparent; }

/* --- Material Strip — Elevated chips --- */
.cp-material-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0 36px;
}
.cp-material-tile {
    border-radius: 20px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(60,64,67,.08);
    border: 1px solid #e8eaed;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    cursor: default;
}
.cp-material-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(60,64,67,.14);
}
.cp-material-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.cp-material-icon img {
    width: 28px;
    height: 28px;
    display: block;
}
.cp-material-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.cp-material-tile b {
    font-weight: 700;
    font-size: 15px;
    display: block;
    color: var(--ink);
    margin-bottom: 4px;
}
.cp-material-tile small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

/* --- Product Grid — Material cards --- */
.cp-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.cp-product-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(60,64,67,.06);
    border: 1px solid #e8eaed;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    position: relative;
    overflow: hidden;
}
.cp-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8, #4285f4);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity .3s;
}
.cp-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(60,64,67,.14);
}
.cp-product-card:hover::before { opacity: 1; }
.cp-product-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.3px;
}
.cp-product-card p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}
.cp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cp-chip {
    font-size: 12px;
    font-weight: 600;
    background: #f1f3f4;
    color: #3c4043;
    padding: 6px 14px;
    border-radius: 999px;
    transition: background .2s, transform .2s;
}
.cp-chip:hover { transform: scale(1.05); }
.cp-chip.blue { background: #e8f0fe; color: #174ea6; }
.cp-chip.green { background: #e6f4ea; color: #137333; }
.cp-chip.red { background: #fce8e6; color: #c5221f; }

/* --- Image Row — Material image cards --- */
.cp-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}
.cp-image-card {
    position: relative;
    overflow: hidden;
    height: 220px;
    border-radius: 24px;
    background: #f1f3f4;
    box-shadow: 0 4px 20px rgba(60,64,67,.12);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cp-image-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 36px rgba(60,64,67,.18);
}
.cp-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}
.cp-image-card:hover img { transform: scale(1.05); }
.cp-image-card:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.5) 100%);
    transition: opacity .3s;
}
.cp-image-card:hover::after { opacity: .8; }
.cp-image-card span {
    position: absolute;
    z-index: 2;
    left: 16px;
    bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* --- Table — Material data table --- */
.cp-table-wrap {
    overflow-x: auto;
    margin: 16px 0 32px;
    border-radius: 16px;
    border: 1px solid #e8eaed;
    box-shadow: 0 2px 12px rgba(60,64,67,.06);
}
.cp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.cp-table th {
    background: linear-gradient(135deg, #1a73e8, #174ea6);
    color: #fff;
    text-align: left;
    font-weight: 600;
    padding: 14px 18px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.cp-table td {
    border-bottom: 1px solid #f1f3f4;
    padding: 12px 18px;
    color: #3c4043;
    transition: background .2s;
}
.cp-table tbody tr:hover td { background: #e8f0fe; }
.cp-table tr:nth-child(even) td { background: #fafbfc; }
.cp-table tr:nth-child(even):hover td { background: #e8f0fe; }

/* --- List Cols — Material chip list --- */
.cp-list-cols {
    columns: 2;
    column-gap: 28px;
    font-size: 15px;
    color: #3c4043;
    list-style: none;
    padding: 0;
    margin: 0;
}
.cp-list-cols li {
    break-inside: avoid;
    margin-bottom: 10px;
    padding: 10px 16px 10px 36px;
    position: relative;
    line-height: 1.5;
    background: #f8fafd;
    border-radius: 12px;
    border: 1px solid transparent;
}

.cp-list-cols li:hover {
    background: #e8f0fe;
    border-color: #d2e3fc;
}
.cp-list-cols li::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a73e8;
}

/* --- Market Grid — Material gradient cards --- */
.cp-market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 36px 0;
}
.cp-market {
    border-radius: 24px;
    padding: 28px;
    color: #fff;
    min-height: 180px;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    cursor: default;
}
.cp-market:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,.2);
}
.cp-market::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    pointer-events: none;
}
.cp-market:nth-child(1) { background: linear-gradient(135deg, #4285f4, #1a73e8); }
.cp-market:nth-child(2) { background: linear-gradient(135deg, #34a853, #188038); }
.cp-market:nth-child(3) { background: linear-gradient(135deg, #ea4335, #c5221f); }
.cp-market b {
    display: block;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.cp-market span {
    font-size: 14px;
    line-height: 1.6;
    opacity: .92;
    position: relative;
    z-index: 1;
}

/* --- Contact Box — Material large CTA --- */
.cp-contact-box {
    margin-top: 48px;
    background: linear-gradient(135deg, #202124 0%, #303134 100%);
    color: #fff;
    border-radius: 28px;
    padding: 52px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(32,33,36,.2);
}
.cp-contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(26,115,232,.15);
    pointer-events: none;
}
.cp-contact-box::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(234,67,53,.1);
    pointer-events: none;
}
.cp-contact-box h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
    letter-spacing: -.5px;
}
.cp-contact-box p {
    margin: 8px 0;
    font-size: 15px;
    color: #e8eaed;
    position: relative;
    z-index: 1;
}

/* --- Kicker --- */
.cp-kicker {
    font-family: Manrope, sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #1a73e8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.cp-kicker::before {
    content: '';
    width: 20px;
    height: 3px;
    background: #1a73e8;
    border-radius: 3px;
}

/* --- Hero image in sections --- */
.cp-hero-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 8px 32px rgba(60,64,67,.16);
    margin-bottom: 32px;
}

/* --- List card wrapper --- */
.cp-list-card {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 20px;
    padding: 24px 28px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(60,64,67,.06);
    transition: box-shadow .3s;
}
.cp-list-card:hover {
    box-shadow: 0 6px 24px rgba(60,64,67,.1);
}

/* --- Responsive --- */
@media (max-width: 820px) {
    .cp-section { padding: 48px 0; }
    .cp-section-head { flex-wrap: wrap; }
    .cp-section-title { font-size: 26px; }
    .cp-product-grid,
    .cp-image-row,
    .cp-market-grid { grid-template-columns: 1fr; }
    .cp-info-grid { grid-template-columns: 1fr; }
    .cp-info-label { background: transparent; padding-bottom: 0; font-size: 12px; }
    .cp-info-value { padding-top: 4px; }
    .cp-material-strip { grid-template-columns: 1fr 1fr; }
    .cp-list-cols { columns: 1; }
    .cp-milestone { padding-left: 0; }
    .cp-milestone::before { left: -36px; width: 12px; height: 12px; }
    .cp-milestone::after { left: -24px; width: 16px; }
    .cp-milestone-year { font-size: 18px; }
    .cp-contact-box { padding: 36px 24px; border-radius: 20px; }
    .cp-hero-img { height: 220px; border-radius: 18px; }
    .cp-quote { padding: 20px 24px 20px 28px; font-size: 16px; }
    .cp-quote::before { font-size: 48px; top: 8px; right: 14px; }
    .company-hero { padding: 56px 0 40px; }
}
@media (max-width: 480px) {
    .cp-material-strip { grid-template-columns: 1fr; }
    .cp-section-title { font-size: 22px; }
    .cp-contact-box h2 { font-size: 22px; }
    .cp-market { min-height: 140px; }
}

/* Final mobile home polish overrides */
@media (max-width: 820px) {
    .pill-tabs {
        width: calc(100vw - 28px) !important;
        max-width: 390px !important;
        padding: 5px !important;
        gap: 4px !important;
    }
    .pill-tabs a {
        flex: 0 0 auto !important;
        min-width: 68px !important;
        padding: 9px 10px !important;
        font-size: 12px !important;
        line-height: 1 !important;
    }
    .service-rail {
        grid-auto-columns: minmax(252px, 78vw) !important;
        gap: 18px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        scroll-padding-left: 24px !important;
        scroll-padding-right: 24px !important;
    }
}
.isa-solution-section {
    padding-bottom: 30px !important;
    background: linear-gradient(180deg, #fff3f3 0%, #fff 70%, #eef1f5 100%) !important;
}
.service-section {
    padding-top: 32px !important;
    padding-bottom: 36px !important;
    background: linear-gradient(180deg, #eef1f5 0%, #f4f5f7 58%, #f7f7f8 100%) !important;
    border-top: 1px solid rgba(226,232,240,.85) !important;
    border-bottom: 0 !important;
}
.partner-section {
    padding-top: 36px !important;
    background: linear-gradient(180deg, #f7f7f8 0%, #fafafa 100%) !important;
    border-top: 0 !important;
}
