:root {
    --server-ink: #14213d;
    --server-muted: #667085;
    --server-line: rgba(20, 33, 61, .1);
    --server-soft: #f5f8ff;
}

.server-mini-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    color: var(--server-ink);
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}

.server-mini-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .86) 45%, rgba(255, 255, 255, .24) 100%),
        var(--server-banner) center right/cover no-repeat;
}

.server-mini-hero .container {
    position: relative;
    z-index: 1;
}

.server-mini-hero h1 {
    max-width: 760px;
    color: var(--server-ink);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.08;
    margin: 18px 0;
}

.server-mini-hero p {
    max-width: 680px;
    color: #475467;
    font-size: 18px;
    line-height: 1.75;
}

.server-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(224, 25, 120, .1);
    color: #c9156a;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    padding: 9px 14px;
    text-transform: uppercase;
}

.server-section {
    padding: 70px 0;
}

.server-section.bg-soft {
    background: var(--server-soft);
}

.server-heading {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.server-heading h2 {
    color: var(--server-ink);
    font-weight: 900;
    margin-bottom: 12px;
}

.server-heading p {
    color: var(--server-muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
}

.server-price-note {
    border: 1px solid rgba(21, 137, 202, .14);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(21, 137, 202, .1), rgba(224, 25, 120, .08));
    color: #344054;
    padding: 18px 20px;
    line-height: 1.65;
}

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

.server-plan-card {
    height: 100%;
    border: 1px solid var(--server-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(20, 33, 61, .08);
    padding: 24px;
}

.server-plan-card.featured {
    border-color: rgba(224, 25, 120, .32);
    box-shadow: 0 24px 58px rgba(224, 25, 120, .12);
}

.server-plan-card h3 {
    color: var(--server-ink);
    font-size: 22px;
    font-weight: 900;
    margin: 14px 0 10px;
}

.server-price {
    color: #e01978;
    font-size: 28px;
    font-weight: 900;
    margin: 12px 0 18px;
}

.server-price small {
    color: var(--server-muted);
    font-size: 13px;
    font-weight: 700;
}

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

.server-spec-list li {
    display: flex;
    gap: 9px;
    color: #344054;
    font-size: 14px;
    line-height: 1.45;
}

.server-spec-list i {
    color: #25a842;
    margin-top: 4px;
}

.server-table-wrap {
    border: 1px solid var(--server-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(20, 33, 61, .07);
    overflow: hidden;
}

.server-table {
    margin: 0;
}

.server-table thead th {
    background: linear-gradient(135deg, #32146f, #1589ca);
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

.server-table th,
.server-table td {
    border-color: rgba(20, 33, 61, .08);
    padding: 14px;
    vertical-align: middle;
}

.server-table tbody th {
    color: var(--server-ink);
    font-weight: 900;
    white-space: nowrap;
}

.slice-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.slice-toolbar p {
    color: var(--server-muted);
    margin: 0;
}

.server-mini-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.server-feature-tile {
    height: 100%;
    border: 1px solid var(--server-line);
    border-radius: 8px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 14px 38px rgba(20, 33, 61, .06);
}

.server-feature-tile i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #e01978, #ff8a00);
    color: #fff;
    font-size: 19px;
    margin-bottom: 16px;
}

.server-feature-tile h3 {
    color: var(--server-ink);
    font-size: 19px;
    font-weight: 900;
}

.server-feature-tile p {
    color: var(--server-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1199.98px) {
    .server-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .server-card-grid,
    .server-mini-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .server-mini-hero::before {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 48%, rgba(255, 255, 255, .58) 100%),
            var(--server-banner) center/cover no-repeat;
    }
}

@media (max-width: 575.98px) {
    .server-mini-hero {
        padding: 58px 0;
    }

    .server-card-grid,
    .server-mini-features {
        grid-template-columns: 1fr;
    }

    .slice-toolbar {
        display: block;
    }

    .slice-toolbar .btn {
        margin-top: 12px;
        width: 100%;
    }
}
