/* =========================================================
   Enterprise SLA — pricing & layout polish
   Palette: #EC2E5E · #8B1538 · #1A1A1A
   ========================================================= */

.enterprise-page .enterprise-hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #3a1020 48%, #8B1538 100%);
    color: #fff;
    padding: clamp(7rem, 12vw, 8.5rem) 0 clamp(3.5rem, 6vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.enterprise-page .enterprise-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(236, 46, 94, 0.35), transparent 55%),
        radial-gradient(ellipse 50% 60% at 10% 80%, rgba(139, 21, 56, 0.4), transparent 50%);
    pointer-events: none;
}

.enterprise-page .enterprise-hero .container {
    position: relative;
    z-index: 1;
}

.enterprise-page .enterprise-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.enterprise-page .enterprise-hero h1 i {
    color: #EC2E5E;
}

.enterprise-page .enterprise-hero p {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    opacity: 0.95;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.65;
}

.enterprise-page .breadcrumb {
    margin-bottom: 1.25rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.enterprise-page .breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.enterprise-page .breadcrumb a:hover {
    text-decoration: underline;
}

/* ---------- Pricing section ---------- */
.sla-pricing {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 55%, #f8fafc 100%);
    border-top: 1px solid #eef0f3;
    border-bottom: 1px solid #eef0f3;
}

.sla-pricing .section-header {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 2rem;
}

.sla-pricing .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #EC2E5E 0%, #8B1538 100%);
    color: #fff;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    box-shadow: 0 8px 18px rgba(236, 46, 94, 0.18);
}

.sla-pricing .section-title {
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    letter-spacing: -0.02em;
    color: #1A1A1A;
    margin: 0 0 0.65rem;
}

.sla-pricing .section-subtitle {
    font-size: clamp(0.98rem, 2vw, 1.1rem);
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* Portal self-serve callout */
.sla-portal-banner {
    max-width: min(920px, 100%);
    margin: 0 auto 2.25rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.15rem;
    align-items: center;
    padding: 1.15rem 1.35rem;
    background: #fff;
    border: 1px solid rgba(236, 46, 94, 0.22);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.06);
}

.sla-portal-banner .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(145deg, #EC2E5E 0%, #8B1538 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.sla-portal-banner h3 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    color: #1A1A1A;
    letter-spacing: -0.01em;
}

.sla-portal-banner p {
    margin: 0;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.5;
}

.sla-portal-banner .btn {
    border-radius: 999px;
    white-space: nowrap;
}

/* Price cards grid */
.sla-price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
    max-width: min(960px, 100%);
    margin: 0 auto 2.5rem;
    align-items: stretch;
}

.sla-price-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.05);
}

.sla-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.1);
    border-color: rgba(236, 46, 94, 0.28);
}

.sla-price-card.is-featured {
    border-color: rgba(236, 46, 94, 0.45);
    box-shadow: 0 18px 48px rgba(236, 46, 94, 0.14);
}

.sla-price-card.is-featured::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #EC2E5E, #8B1538);
}

.sla-price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    background: linear-gradient(135deg, #EC2E5E 0%, #8B1538 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(236, 46, 94, 0.28);
}

.sla-price-card-head {
    padding: 1.75rem 1.5rem 1.25rem;
    text-align: center;
    background: linear-gradient(180deg, #fdf2f5 0%, #fff 100%);
    border-bottom: 1px solid #f0f1f3;
}

.sla-price-card.is-featured .sla-price-card-head {
    background: linear-gradient(180deg, #fff5f8 0%, #fff 100%);
}

.sla-price-card-head .plan-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8B1538;
    margin-bottom: 0.5rem;
}

.sla-price-card-head h3 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    color: #1A1A1A;
    letter-spacing: -0.02em;
}

.sla-price-card-head .plan-desc {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.sla-price-amount {
    margin: 1.15rem 0 0.35rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    flex-wrap: wrap;
}

.sla-price-amount .currency {
    font-size: 1.35rem;
    font-weight: 700;
    color: #EC2E5E;
    align-self: flex-start;
    margin-top: 0.45rem;
}

.sla-price-amount .value {
    font-size: clamp(2.75rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #EC2E5E;
    letter-spacing: -0.03em;
    line-height: 1;
}

.sla-price-amount .vat {
    font-size: 1rem;
    font-weight: 600;
    color: #8B1538;
    opacity: 0.85;
}

.sla-price-period {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.sla-price-was {
    font-size: 0.95rem;
    color: #999;
    text-decoration: line-through;
    margin: 0 0 0.15rem;
}

.sla-price-save {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(236, 46, 94, 0.1);
    color: #8B1538;
    font-size: 0.85rem;
    font-weight: 700;
}

.sla-price-equiv {
    margin: 0.5rem 0 0;
    font-size: 0.88rem;
    color: #555;
}

.sla-price-body {
    padding: 1.35rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1.15rem;
}

.sla-includes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.sla-includes li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.4;
}

.sla-includes li i {
    color: #EC2E5E;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.sla-example {
    margin-top: auto;
    padding: 1rem 1.1rem;
    background: #f8fafc;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    text-align: center;
}

.sla-example .label {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 0.35rem;
}

.sla-example .total {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1A1A1A;
}

.sla-example .total span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
}

.sla-example .breakdown {
    margin: 0.25rem 0 0;
    font-size: 0.8rem;
    color: #999;
}

.sla-price-actions {
    display: grid;
    gap: 0.6rem;
}

.sla-price-actions .btn {
    border-radius: 999px;
    text-align: center;
    justify-content: center;
    width: 100%;
}

.sla-price-actions .btn-primary {
    background: linear-gradient(145deg, #EC2E5E 0%, #8B1538 100%) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700;
    padding: 0.9rem 1.25rem;
}

.sla-price-actions .btn-secondary {
    background: #fff !important;
    border: 2px solid rgba(236, 46, 94, 0.35) !important;
    color: #EC2E5E !important;
    font-weight: 700;
    padding: 0.8rem 1.25rem;
}

.sla-price-actions .btn-secondary:hover {
    background: rgba(236, 46, 94, 0.06) !important;
}

/* How it works */
.sla-how {
    max-width: min(960px, 100%);
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #1A1A1A 0%, #3a1020 50%, #8B1538 100%);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    color: #fff;
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.2);
}

.sla-how-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.sla-how-header h3 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    color: #fff;
}

.sla-how-header p {
    margin: 0 auto;
    max-width: 36rem;
    opacity: 0.92;
    line-height: 1.6;
    font-size: 0.98rem;
}

.sla-how-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.sla-how-step {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 1.15rem 1rem;
    text-align: center;
    backdrop-filter: blur(8px);
}

.sla-how-step .num {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.75rem;
    border-radius: 10px;
    background: linear-gradient(145deg, #EC2E5E, #8B1538);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.sla-how-step h4 {
    margin: 0 0 0.35rem;
    color: #fff;
    font-size: 1rem;
}

.sla-how-step p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.88rem;
    line-height: 1.45;
}

/* Benefits strip under pricing */
.sla-benefits-strip {
    max-width: min(960px, 100%);
    margin: 0 auto 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.sla-benefit-chip {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.sla-benefit-chip .icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(145deg, #EC2E5E 0%, #8B1538 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sla-benefit-chip h4 {
    margin: 0 0 0.2rem;
    font-size: 0.95rem;
    color: #1A1A1A;
}

.sla-benefit-chip p {
    margin: 0;
    font-size: 0.82rem;
    color: #666;
    line-height: 1.4;
}

/* Info note */
.sla-note {
    max-width: min(960px, 100%);
    margin: 0 auto;
    padding: 1.15rem 1.25rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #EC2E5E;
    border-radius: 12px;
}

.sla-note strong {
    color: #1A1A1A;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.sla-note strong i {
    color: #EC2E5E;
}

.sla-note ul {
    margin: 0.65rem 0 0;
    padding-left: 1.2rem;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.7;
}

.sla-note a {
    color: #EC2E5E;
    font-weight: 600;
}

/* Bottom CTA */
.enterprise-page .sla-final-cta {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #3a1020 50%, #8B1538 100%);
    text-align: center;
    color: #fff;
}

.enterprise-page .sla-final-cta h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
}

.enterprise-page .sla-final-cta p {
    margin: 0 auto 1.5rem;
    max-width: 38rem;
    opacity: 0.92;
    line-height: 1.65;
}

.enterprise-page .sla-final-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.enterprise-page .sla-final-cta .btn-primary {
    background: #fff !important;
    color: #EC2E5E !important;
    border: none !important;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.9rem 1.5rem;
}

.enterprise-page .sla-final-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: #fff !important;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.9rem 1.5rem;
}

/* Brand feature icons on rest of page */
.enterprise-page .feature-icon {
    background: linear-gradient(145deg, #EC2E5E 0%, #8B1538 100%) !important;
    border-radius: 16px !important;
    clip-path: none !important;
}

.enterprise-page .check-icon {
    color: #EC2E5E;
}

.enterprise-page .comparison-table th {
    background: linear-gradient(145deg, #EC2E5E 0%, #8B1538 100%) !important;
    color: #fff !important;
}

/* Responsive */
@media (max-width: 900px) {
    .sla-price-grid,
    .sla-how-steps,
    .sla-benefits-strip {
        grid-template-columns: 1fr;
    }

    .sla-portal-banner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .sla-portal-banner .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 560px) {
    .sla-price-card-head,
    .sla-price-body {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }
}
