.sampark-products-mega-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--sampark-products-menu-top, 88px);
    width: 100vw;
    background: #ffffff;
    border-top: 1px solid rgba(15, 107, 60, 0.12);
    border-bottom: 1px solid rgba(15, 107, 60, 0.16);
    box-shadow: 0 22px 48px rgba(18, 35, 28, 0.14);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity 0.16s ease, visibility 0.16s ease;
}
.sampark-products-mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.sampark-products-menu-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 21% 55% 24%;
    min-height: 430px;
    background: #ffffff;
}

.sampark-products-left {
    background: linear-gradient(145deg, #0b4d32 0%, #11613d 58%, #0b4a31 100%);
    color: #ffffff;
    padding: 26px 24px 24px;
    position: relative;
    overflow: hidden;
}

.sampark-products-left::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -94px;
    bottom: -92px;
    border: 1px solid rgba(214, 232, 141, 0.16);
    transform: rotate(18deg);
}

.sampark-products-left::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -68px;
    top: 28px;
    background: radial-gradient(circle, rgba(214, 232, 141, 0.14), rgba(214, 232, 141, 0));
}

.sampark-products-left-kicker {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #dcefa0;
    margin-bottom: 10px;
    font-weight: 700;
}

.sampark-products-left h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 700;
}

.sampark-products-left p {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.5;
}

.sampark-products-groups {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 3px;
}

.sampark-products-group {
    width: 100%;
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(225, 235, 220, 0.88);
    text-align: left;
    padding: 10px 10px 10px 18px;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 650;
    cursor: pointer;
    position: relative;
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.sampark-products-group::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-50%) rotate(-45deg);
    opacity: 0.58;
}

.sampark-products-group::after {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    bottom: 7px;
    width: 2px;
    background: #d6e88d;
    opacity: 0;
    transition: opacity 0.16s ease;
}

.sampark-products-group:hover {
    color: #f4f8e6;
    background: rgba(214, 232, 141, 0.10);
    transform: translateX(1px);
}

.sampark-products-group.is-active {
    color: #123b27;
    background: rgba(214, 232, 141, 0.72);
    transform: translateX(1px);
}

.sampark-products-group.is-active::after {
    opacity: 1;
}

.sampark-products-middle {
    position: relative;
    overflow: hidden;
    padding: 26px 30px 28px;
    background:
        linear-gradient(135deg, rgba(245, 249, 232, 0.72), rgba(255, 255, 255, 0.92) 45%, rgba(255, 255, 255, 1)),
        #ffffff;
}

.sampark-products-bg-graphic {
    position: absolute;
    right: 22px;
    bottom: 14px;
    width: 360px;
    max-width: 52%;
    opacity: 0.72;
    pointer-events: none;
}

.sampark-products-panel {
    display: none;
    position: relative;
    z-index: 1;
}

.sampark-products-panel.is-active {
    display: block;
}

.sampark-products-panel-head {
    max-width: 720px;
    margin-bottom: 18px;
}

.sampark-products-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 5px 10px;
    background: rgba(214, 232, 141, 0.42);
    border: 1px solid rgba(15, 107, 60, 0.13);
    color: #0f6b3c;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 10px;
}

.sampark-products-panel-head h4 {
    margin: 0 0 7px;
    color: #12231c;
    font-size: 24px;
    line-height: 1.18;
    font-weight: 760;
}

.sampark-products-panel-head p {
    margin: 0;
    max-width: 660px;
    color: #4e5b54;
    font-size: 14px;
    line-height: 1.55;
}

.sampark-products-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 720px;
}

.sampark-products-card {
    min-height: 94px;
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: start;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 107, 60, 0.13);
    padding: 14px 14px;
    color: #12231c;
    position: relative;
    overflow: hidden;
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.sampark-products-card::after {
    content: "";
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(15, 107, 60, 0.07);
    transform: rotate(12deg);
}

.sampark-products-card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 107, 60, 0.28);
    box-shadow: 0 12px 24px rgba(18, 35, 28, 0.08);
    background: #ffffff;
}

.sampark-products-icon {
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    display: block;
    background-color: rgba(214, 232, 141, 0.42);
    border: 1px solid rgba(15, 107, 60, 0.14);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
}

.sampark-products-card strong {
    display: block;
    color: #12231c;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 760;
    margin: 2px 0 4px;
}

.sampark-products-card small {
    display: block;
    color: #65716b;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
}

.sampark-products-right {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(214, 232, 141, 0.54), rgba(214, 232, 141, 0) 38%),
        linear-gradient(180deg, #fbfdea 0%, #f5f8de 100%);
    padding: 28px 24px;
    border-left: 1px solid rgba(15, 107, 60, 0.1);
}

.sampark-products-use-panel {
    display: none;
}

.sampark-products-use-panel.is-active {
    display: block;
}

.sampark-products-use-kicker {
    display: inline-block;
    color: #0f6b3c;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 12px;
}

.sampark-products-use-panel h4 {
    margin: 0 0 18px;
    color: #12231c;
    font-size: 20px;
    line-height: 1.28;
    font-weight: 760;
}

.sampark-products-use-list {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.sampark-products-use-list span {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    align-items: center;
    min-height: 48px;
    padding: 10px 10px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(15, 107, 60, 0.12);
    color: #26342d;
    font-size: 13px;
    line-height: 1.28;
    font-weight: 650;
}

.sampark-products-use-list i {
    width: 26px;
    height: 26px;
    display: block;
    background: rgba(15, 107, 60, 0.1);
    border: 1px solid rgba(15, 107, 60, 0.16);
    position: relative;
}

.sampark-products-use-list i::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #0f6b3c;
    border-bottom: 2px solid #0f6b3c;
    transform: rotate(-45deg);
}

.sampark-products-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 10px 14px;
    background: transparent;
    border: 1px solid rgba(15, 107, 60, 0.42);
    color: #0f6b3c;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.sampark-products-cta::after {
    content: "→";
    font-size: 15px;
    line-height: 1;
}

.sampark-products-cta:hover {
    background: #0f6b3c;
    color: #ffffff;
    border-color: #0f6b3c;
    transform: translateX(2px);
}

/* Inline SVG icons */
.sampark-products-icon-desk {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 13v-2a6 6 0 0 1 12 0v2' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M6 13H4v4h2v-4Zm14 0h-2v4h2v-4Z' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Cpath d='M14 19h2a2 2 0 0 0 2-2' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.sampark-products-icon-workflow {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='4' width='6' height='6' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Crect x='15' y='4' width='6' height='6' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Crect x='9' y='15' width='6' height='6' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Cpath d='M9 7h6M12 10v5' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.sampark-products-icon-asset {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l8-4 8 4-8 4-8-4Z' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Cpath d='M4 12l8 4 8-4M4 16l8 4 8-4' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.sampark-products-icon-itom,
.sampark-products-icon-network {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='5' width='18' height='12' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Cpath d='M8 20h8M12 17v3M7 12h3l2-3 2 5 2-3h2' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.sampark-products-icon-agent,
.sampark-products-icon-chat {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 6h14v10H9l-4 4V6Z' stroke='%230f6b3c' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9 10h6M9 13h4' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M17 3v3M20 5h-3' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.sampark-products-icon-endpoint {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='5' width='16' height='11' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Cpath d='M8 20h8M12 16v4' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M12 8l3 1v2.5c0 1.7-1.2 3-3 3.5-1.8-.5-3-1.8-3-3.5V9l3-1Z' stroke='%230f6b3c' stroke-width='1.5'/%3E%3C/svg%3E");
}

.sampark-products-icon-iot {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Ccircle cx='5' cy='5' r='2' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Ccircle cx='19' cy='5' r='2' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Ccircle cx='5' cy='19' r='2' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Ccircle cx='19' cy='19' r='2' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Cpath d='M7 7l3 3M17 7l-3 3M7 17l3-3M17 17l-3-3' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.sampark-products-icon-medical,
.sampark-products-icon-clinic {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='5' width='16' height='15' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Cpath d='M12 9v7M8.5 12.5h7' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M9 5V3h6v2' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.sampark-products-icon-database {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='12' cy='6' rx='7' ry='3' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Cpath d='M5 6v6c0 1.7 3.1 3 7 3s7-1.3 7-3V6M5 12v6c0 1.7 3.1 3 7 3s7-1.3 7-3v-6' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Cpath d='M16 16l2 2 3-4' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.sampark-products-icon-shield {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3l7 3v5c0 4.4-2.8 8.3-7 10-4.2-1.7-7-5.6-7-10V6l7-3Z' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Cpath d='M9 12l2 2 4-5' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.sampark-products-icon-recruit {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='8' r='3' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Cpath d='M4 19c.7-3 2.5-5 5-5s4.3 2 5 5' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3Crect x='15' y='5' width='5' height='5' stroke='%230f6b3c' stroke-width='1.6'/%3E%3Cpath d='M17.5 10v4M15.5 16h4' stroke='%230f6b3c' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.sampark-products-icon-factory,
.sampark-products-icon-mes {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 20V9l5 4V9l5 4V6h6v14H4Z' stroke='%230f6b3c' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M8 17h2M13 17h2M18 10h2' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.sampark-products-icon-video {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='7' width='11' height='10' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Cpath d='M15 10l5-3v10l-5-3' stroke='%230f6b3c' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M8 20h4' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.sampark-products-icon-crm {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Ccircle cx='17' cy='9' r='2' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Cpath d='M3.5 19c.7-3.2 2.5-5 4.5-5s3.8 1.8 4.5 5M14 16c.7-1.3 1.7-2 3-2 1.8 0 3 1.3 3.5 4' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.sampark-products-icon-erp,
.sampark-products-icon-grid {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='4' width='6' height='6' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Crect x='14' y='4' width='6' height='6' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Crect x='4' y='14' width='6' height='6' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Crect x='14' y='14' width='6' height='6' stroke='%230f6b3c' stroke-width='1.8'/%3E%3C/svg%3E");
}

.sampark-products-icon-lms {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7l8-4 8 4-8 4-8-4Z' stroke='%230f6b3c' stroke-width='1.8'/%3E%3Cpath d='M7 10v5c1.6 1.3 3.2 2 5 2s3.4-.7 5-2v-5' stroke='%230f6b3c' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M20 7v6' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.sampark-products-icon-utility {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 21l3-8H6l7-10-2 8h5l-9 10Z' stroke='%230f6b3c' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M16 5h4M18 3v4M17 17h4M19 15v4' stroke='%230f6b3c' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

@media (max-width: 1180px) {
    .sampark-products-menu-inner {
        grid-template-columns: 24% 50% 26%;
    }

    .sampark-products-middle {
        padding-left: 22px;
        padding-right: 22px;
    }

    .sampark-products-panel-head h4 {
        font-size: 21px;
    }

    .sampark-products-card {
        min-height: 96px;
    }
}

@media (max-width: 980px) {
    .sampark-products-mega-menu {
        display: none;
    }
}
