.hnsp-pricing,
.hnsp-pricing * {
    box-sizing: border-box;
}

.hnsp-pricing {
    --hnsp-accent: #f36b21;
    --hnsp-accent-dark: #d94d12;
    --hnsp-bg: #fff8f2;
    --hnsp-columns: 4;
    width: 100%;
    padding: 30px 15px 40px;
    background: var(--hnsp-bg);
    font-family: inherit;
}

.hnsp-pricing img {
    display: block;
    max-width: 100%;
}

.hnsp-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.hnsp-heading {
    margin-bottom: 22px;
    text-align: center;
}

.hnsp-heading h2 {
    margin: 0 0 6px;
    color: var(--hnsp-accent-dark);
    font-size: clamp(23px, 2.4vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.hnsp-heading p {
    margin: 0;
    color: var(--hnsp-accent);
    font-size: 15px;
    font-weight: 700;
}


.hnsp-section-group + .hnsp-section-group {
    margin-top: 56px;
    padding-top: 8px;
    border-top: 1px solid rgba(217, 77, 18, .14);
}

.hnsp-grid {
    display: grid;
    grid-template-columns: repeat(var(--hnsp-columns), minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.hnsp-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f1d1bc;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(26, 39, 54, 0.07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.hnsp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(26, 39, 54, 0.14);
}

.hnsp-media {
    position: relative;
    width: 100%;
    min-height: 245px;
    overflow: hidden;
    background: #e9edf0;
}

.hnsp-main-image {
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: transform .45s ease;
}

.hnsp-card:hover .hnsp-main-image {
    transform: scale(1.035);
}

.hnsp-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 245px;
    padding: 20px;
    color: #6d7b86;
    background: linear-gradient(135deg, #edf1f4, #dce4e9);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.hnsp-device-image {
    position: absolute;
    left: 9px;
    bottom: 49px;
    z-index: 2;
    width: 76px;
    height: 76px;
    padding: 3px;
    object-fit: cover;
    background: #fff;
    border: 2px solid rgba(255,255,255,.95);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,.22);
}

.hnsp-stats {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 43px;
    background: linear-gradient(90deg, var(--hnsp-accent-dark), var(--hnsp-accent));
}

.hnsp-stat {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 5px 2px;
    color: #fff;
    text-align: center;
}

.hnsp-stat:not(:last-child)::after {
    position: absolute;
    top: 9px;
    right: 0;
    bottom: 9px;
    width: 1px;
    background: rgba(255,255,255,.42);
    content: "";
}

.hnsp-stat-label {
    margin-bottom: 2px;
    font-size: 7px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    opacity: .9;
}

.hnsp-stat-value {
    overflow: hidden;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hnsp-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding-top: 8px;
}

.hnsp-title-area {
    min-height: 104px;
    padding: 0 13px;
    text-align: center;
}

.hnsp-title-area h3 {
    margin: 0 0 3px;
    color: #050505;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
}

.hnsp-reference-price {
    margin: 0 0 3px;
    color: #ed2b16;
    font-size: 13px;
    font-weight: 800;
}

.hnsp-equipment {
    margin: 0;
    color: #050505;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.hnsp-storage-wrap {
    padding: 10px 10px 12px;
    text-align: center;
}

.hnsp-storage-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 30px;
    padding: 5px 12px;
    color: var(--hnsp-accent-dark);
    background: #fff;
    border: 1px solid #f2b99c;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.hnsp-battery-icon {
    position: relative;
    display: inline-block;
    width: 13px;
    height: 17px;
    background: #f7ba48;
    border: 2px solid #68a95e;
    border-radius: 3px;
}

.hnsp-battery-icon::before {
    position: absolute;
    top: -4px;
    left: 3px;
    width: 4px;
    height: 3px;
    background: #68a95e;
    border-radius: 1px 1px 0 0;
    content: "";
}

.hnsp-battery-icon::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 3px;
    height: 6px;
    background: #fff;
    border-radius: 1px;
    content: "";
}

.hnsp-card-inner {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0 8px 8px;
}

.hnsp-price-panel {
    margin-bottom: 9px;
    padding: 13px 10px 12px;
    color: #fff;
    background: linear-gradient(150deg, #f39362 0%, var(--hnsp-accent) 55%, #ff6508 100%);
    border-radius: 13px;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.hnsp-package-label,
.hnsp-bill-range {
    display: block;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.hnsp-package-label {
    margin-bottom: 7px;
}

.hnsp-main-price {
    display: block;
    margin-bottom: 7px;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.1;
}

.hnsp-details details {
    margin: 0 0 8px;
    overflow: hidden;
    background: #f7f7f8;
    border-radius: 12px;
}

.hnsp-details summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 7px;
    min-height: 43px;
    padding: 10px;
    color: #111;
    cursor: pointer;
    list-style: none;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    user-select: none;
}

.hnsp-details summary::-webkit-details-marker {
    display: none;
}

.hnsp-detail-label {
    color: var(--hnsp-accent-dark);
    font-size: 10px;
}

.hnsp-details summary::after {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--hnsp-accent-dark);
    content: "+";
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.hnsp-details details[open] summary::after {
    content: "−";
}

.hnsp-details details[open] summary {
    border-bottom: 1px solid #e8e8e8;
}

.hnsp-detail-content {
    padding: 10px 11px 12px;
    color: #343a40;
    background: #fff;
    font-size: 12px;
    line-height: 1.55;
}

.hnsp-detail-content p {
    margin: 0 0 7px;
}

.hnsp-detail-content p:last-child {
    margin-bottom: 0;
}

.hnsp-detail-content strong {
    color: #111;
}

.hnsp-footer {
    margin-top: auto;
    padding-top: 2px;
}

.hnsp-zalo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 12px;
    color: #062b4d;
    background: #fff;
    border: 1px solid #a9bdd0;
    border-radius: 11px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.hnsp-zalo:hover {
    color: #fff;
    background: #062b4d;
    border-color: #062b4d;
    transform: translateY(-1px);
}

@media (max-width: 1100px) {
    .hnsp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .hnsp-media,
    .hnsp-main-image,
    .hnsp-placeholder {
        min-height: 280px;
        height: 280px;
    }

    .hnsp-stat-label { font-size: 9px; }
    .hnsp-stat-value { font-size: 11px; }
}

@media (max-width: 640px) {
    .hnsp-pricing {
        padding: 25px 10px 30px;
    }

    .hnsp-heading {
        margin-bottom: 17px;
    }

    .hnsp-heading h2 {
        font-size: 23px;
    }

    .hnsp-heading p {
        padding: 0 12px;
        font-size: 13px;
        line-height: 1.4;
    }

    .hnsp-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hnsp-media,
    .hnsp-main-image,
    .hnsp-placeholder {
        min-height: 260px;
        height: 260px;
    }

    .hnsp-device-image {
        width: 72px;
        height: 72px;
    }

    .hnsp-title-area {
        min-height: auto;
        padding-bottom: 5px;
    }

    .hnsp-title-area h3 { font-size: 19px; }
    .hnsp-equipment { font-size: 16px; }
    .hnsp-main-price { font-size: 23px; }
    .hnsp-details summary { font-size: 12px; }
    .hnsp-detail-label { font-size: 11px; }
    .hnsp-zalo { min-height: 44px; font-size: 12px; }
}

@media (max-width: 390px) {
    .hnsp-media,
    .hnsp-main-image,
    .hnsp-placeholder {
        min-height: 225px;
        height: 225px;
    }

    .hnsp-stat-label { font-size: 7px; }
    .hnsp-stat-value { font-size: 9px; }
}
