﻿.sla-show-page {
    direction: rtl;
    padding-bottom: 64px;
}

    .sla-show-page * {
        box-sizing: border-box;
    }

.sla-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    margin: 24px 0 32px;
    padding: 32px;
    border-radius: 4px;
    overflow: hidden;
    background: radial-gradient(circle at top left, var(--sla-product-soft-color), transparent 36%), linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: none;
}

    .sla-hero::before {
        content: "";
        position: absolute;
        inset-inline-start: -80px;
        inset-block-start: -80px;
        width: 220px;
        height: 220px;
        border-radius: 999px;
        background: var(--sla-product-color);
        opacity: .08;
    }

.sla-hero-content {
    position: relative;
    z-index: 1;
}

.sla-eyebrow,
.sla-section-heading span,
.sla-contact-card span,
.sla-voice-card span,
.sla-phone-box span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--sla-product-color);
    background: var(--sla-product-soft-color);
    font-size: 13px;
    font-weight: 700;
}

.sla-hero h1 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.6;
}

.sla-hero p {
    max-width: 760px;
    margin: 0;
    color: #475569;
    font-size: 16px;
    line-height: 2;
}

.sla-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.sla-primary-btn,
.sla-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
    box-shadow: none;
}

.sla-primary-btn {
    color: #ffffff;
    background: var(--sla-product-color);
    border: 1px solid var(--sla-product-color);
}

.sla-secondary-btn {
    color: #0f172a;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .1);
}

    .sla-primary-btn:hover,
    .sla-secondary-btn:hover {
        transform: translateY(-2px);
        text-decoration: none;
    }

.sla-hero-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
    padding: 24px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 23, 42, .08);
    backdrop-filter: blur(12px);
    box-shadow: none;
}

.sla-hero-card-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 4px;
    color: #ffffff;
    background: var(--sla-product-soft-color);
    border: 1px solid color-mix(in srgb, var(--sla-product-color) 22%, transparent);
    font-size: 24px;
    font-weight: 900;
    overflow: hidden;
}

    .sla-hero-card-icon img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }

.sla-hero-card strong {
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.sla-hero-card span {
    color: #64748b;
    font-size: 14px;
    line-height: 2;
}

.sla-section-heading {
    margin-bottom: 22px;
}

    .sla-section-heading h2 {
        margin: 0;
        color: #0f172a;
        font-size: 26px;
        font-weight: 900;
        line-height: 1.7;
    }

    .sla-section-heading p {
        margin: 8px 0 0;
        color: #64748b;
        font-size: 15px;
        line-height: 2;
    }

.sla-status-section,
.sla-packages-section,
.sla-contract-section {
    margin-bottom: 36px;
}

.sla-status-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.sla-status-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 112px;
    padding: 18px;
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: none;
}

.sla-status-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .sla-status-info strong {
        color: #0f172a;
        font-size: 16px;
        font-weight: 900;
    }

    .sla-status-info span {
        color: #16a34a;
        font-size: 13px;
        font-weight: 800;
    }

.sla-status-progress {
    position: relative;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
}

    .sla-status-progress svg {
        width: 58px;
        height: 58px;
        transform: rotate(-90deg);
    }

.sla-progress-track,
.sla-progress-bar {
    fill: none;
    stroke-width: 5;
}

.sla-progress-track {
    stroke: #e2e8f0;
}

.sla-progress-bar {
    stroke: #16a34a;
    stroke-linecap: round;
    stroke-dasharray: 151;
    stroke-dashoffset: calc(151 - (151 * var(--progress)) / 100);
}

.sla-status-progress span {
    position: absolute;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.sla-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.sla-package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px 22px 22px;
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    overflow: visible;
    box-shadow: none;
}

    .sla-package-card.is-recommended {
        border-color: var(--sla-product-color);
        box-shadow: none;
    }

    .sla-package-card.is-current {
        background: linear-gradient(180deg, var(--sla-product-soft-color) 0%, #ffffff 38%);
    }

.sla-package-badge {
    position: absolute;
    top: -13px;
    inset-inline-start: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    margin: 0;
    padding: 4px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--sla-product-color);
    border: 2px solid #ffffff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.sla-current-badge {
    display: none;
}

.sla-package-header h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 24px;
    font-weight: 950;
}

.sla-package-header p {
    min-height: 56px;
    margin: 0 0 18px;
    color: #64748b;
    font-size: 14px;
    line-height: 2;
}

.sla-package-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-height: 48px;
    margin-bottom: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

    .sla-package-price strong {
        color: #0f172a;
        font-size: 24px;
        font-weight: 950;
    }

    .sla-package-price span {
        color: #64748b;
        font-size: 13px;
        font-weight: 700;
    }

.sla-package-action {
    margin-bottom: 18px;
}

.sla-package-buy-btn,
.sla-package-current-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 900;
    border: 1px solid var(--sla-product-color);
}

.sla-package-buy-btn {
    color: #ffffff;
    background: var(--sla-product-color);
    cursor: pointer;
    transition: .2s ease;
}

    .sla-package-buy-btn:hover {
        opacity: .9;
    }

.sla-package-current-status {
    color: var(--sla-product-color);
    background: var(--sla-product-soft-color);
}

.sla-feature-group {
    margin-top: 18px;
}

    .sla-feature-group h4 {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0 0 12px;
        color: #0f172a;
        font-size: 15px;
        font-weight: 900;
    }

        .sla-feature-group h4 span {
            display: grid;
            place-items: center;
            width: 20px;
            height: 20px;
            border-radius: 999px;
            color: #ffffff;
            background: var(--sla-product-color);
            font-size: 12px;
        }

.sla-feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(15, 23, 42, .12);
}

    .sla-feature-row span {
        color: #475569;
        font-size: 13px;
        line-height: 1.9;
    }

    .sla-feature-row strong {
        color: #0f172a;
        font-size: 13px;
        font-weight: 900;
        text-align: left;
    }

    .sla-feature-row.is-not-available span,
    .sla-feature-row.is-not-available strong {
        color: #dc2626;
    }

.sla-change-alert {
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 4px;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fde68a;
    font-size: 14px;
    font-weight: 800;
}

.sla-contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
    gap: 18px;
    margin-bottom: 36px;
}

.sla-contact-card,
.sla-voice-card {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: none;
}

    .sla-contact-card h2,
    .sla-voice-card h2 {
        margin: 0 0 8px;
        color: #0f172a;
        font-size: 21px;
        font-weight: 950;
    }

    .sla-contact-card p,
    .sla-voice-card p {
        margin: 0;
        color: #64748b;
        font-size: 14px;
        line-height: 2;
    }

.sla-phone-box {
    display: flex;
    flex-direction: column;
    min-width: 190px;
    padding: 18px;
    border-radius: 4px;
    text-decoration: none;
    background: var(--sla-product-soft-color);
    border: 1px solid color-mix(in srgb, var(--sla-product-color) 18%, transparent);
}

    .sla-phone-box strong {
        color: #0f172a;
        font-size: 20px;
        font-weight: 950;
        direction: ltr;
        text-align: right;
    }

.sla-voice-icon {
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 4px;
    color: #ffffff;
    background: var(--sla-product-color);
    font-size: 24px;
}

.sla-feedback-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 112px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 4px;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .12);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

    .sla-feedback-btn br {
        display: none;
    }

    .sla-feedback-btn:hover {
        color: var(--sla-product-color);
        text-decoration: none;
    }

.sla-contract-content {
    padding: 28px;
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    color: #334155;
    font-size: 15px;
    line-height: 2.25;
    box-shadow: none;
}

    .sla-contract-content h1,
    .sla-contract-content h2,
    .sla-contract-content h3 {
        color: #0f172a;
        font-weight: 950;
        line-height: 1.8;
    }

    .sla-contract-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 18px 0;
        overflow: hidden;
        border-radius: 4px;
    }

    .sla-contract-content th,
    .sla-contract-content td {
        padding: 12px;
        border: 1px solid #e2e8f0;
    }

    .sla-contract-content th {
        background: #f8fafc;
        color: #0f172a;
        font-weight: 900;
    }

@media (max-width: 1199px) {
    .sla-hero {
        grid-template-columns: 1fr;
    }

    .sla-status-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sla-package-grid {
        grid-template-columns: 1fr;
    }

    .sla-contact-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .sla-hero {
        padding: 22px;
        border-radius: 4px;
    }

        .sla-hero h1 {
            font-size: 25px;
        }

        .sla-hero p {
            font-size: 14px;
        }

    .sla-hero-actions {
        flex-direction: column;
    }

    .sla-primary-btn,
    .sla-secondary-btn {
        width: 100%;
    }

    .sla-status-grid {
        grid-template-columns: 1fr;
    }

    .sla-contact-card,
    .sla-voice-card {
        flex-direction: column;
        align-items: stretch;
    }

    .sla-phone-box {
        min-width: auto;
    }

    .sla-feedback-btn {
        width: 100%;
        min-width: 0;
    }

    .sla-contract-content {
        padding: 20px;
        border-radius: 4px;
        overflow-x: auto;
    }
}
