/* Security Policy — PHASE 8 */

.hosting-page--security {
    --sec-accent: #1a7a42;
    --sec-accent-light: #86efac;
    --sec-dark: #1a2332;
    --sec-muted: #475569;
}

.hosting-page--security .sec-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(26, 35, 50, 0.9)),
        url('../img/hp-blade-server.webp') center/cover no-repeat;
}

.hosting-page--security .sec-block {
    padding: 72px 0;
}

.hosting-page--security .sec-block--light {
    background: #f8fafc;
}

.hosting-page--security .sec-block--white {
    background: #fff;
}

.hosting-page--security .sec-block--dark {
    background: linear-gradient(160deg, var(--sec-dark), #0f172a);
}

.hosting-page--security .sec-block-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.hosting-page--security .sec-block-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 12px;
}

.hosting-page--security .sec-block-header p {
    font-size: 16px;
    color: var(--sec-muted);
    line-height: 1.65;
    margin: 0;
}

.hosting-page--security .sec-block-header--light h2 {
    color: #fff;
}

.hosting-page--security .sec-block-header--light p {
    color: rgba(255, 255, 255, 0.78);
}

.hosting-page--security .sec-block-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(26, 122, 66, 0.15), rgba(26, 122, 66, 0.05));
    color: var(--sec-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.hosting-page--security .sec-block-icon--light {
    background: rgba(134, 239, 172, 0.12);
    color: var(--sec-accent-light);
}

.hosting-page--security .sec-zero-trust {
    max-width: 820px;
    margin: 0 auto;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.hosting-page--security .sec-zero-trust p {
    font-size: 15px;
    color: var(--sec-muted);
    line-height: 1.75;
    margin: 0 0 14px;
}

.hosting-page--security .sec-zero-trust p:last-child {
    margin-bottom: 0;
}

.hosting-page--security .sec-zero-trust ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.hosting-page--security .sec-zero-trust li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}

.hosting-page--security .sec-zero-trust li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: var(--sec-accent);
}

.hosting-page--security .sec-card-grid {
    display: grid;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.hosting-page--security .sec-card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.hosting-page--security .sec-card-grid--5 {
    grid-template-columns: repeat(5, 1fr);
}

.hosting-page--security .sec-card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.hosting-page--security .sec-tech-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 20px;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hosting-page--security .sec-tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(26, 35, 50, 0.1);
    border-color: rgba(26, 122, 66, 0.35);
}

.hosting-page--security .sec-tech-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(26, 122, 66, 0.1);
    color: var(--sec-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.hosting-page--security .sec-tech-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px;
}

.hosting-page--security .sec-tech-card p {
    font-size: 13px;
    color: var(--sec-muted);
    line-height: 1.55;
    margin: 0;
}

.hosting-page--security .sec-disclosure-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 36px 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    text-align: center;
}

.hosting-page--security .sec-disclosure-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin: 0 0 16px;
}

.hosting-page--security .sec-disclosure-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    background: var(--sec-accent);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.hosting-page--security .sec-disclosure-email:hover {
    background: #15803d;
    color: #fff;
}

.hosting-page--security .sec-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.hosting-page--security .sec-cert-card {
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.hosting-page--security .sec-cert-badge {
    display: inline-block;
    font-size: 32px;
    font-weight: 800;
    color: var(--sec-accent);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.hosting-page--security .sec-cert-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px;
}

.hosting-page--security .sec-cert-card p {
    font-size: 14px;
    color: var(--sec-muted);
    line-height: 1.6;
    margin: 0;
}

.hosting-page--security .sec-cta {
    background: linear-gradient(135deg, #1a7a42, #15803d);
    padding: 56px 20px;
    text-align: center;
}

.hosting-page--security .sec-cta h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 12px;
}

.hosting-page--security .sec-cta p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .hosting-page--security .sec-card-grid--4,
    .hosting-page--security .sec-card-grid--5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hosting-page--security .sec-card-grid--3,
    .hosting-page--security .sec-cert-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hosting-page--security .sec-block {
        padding: 48px 0;
    }

    .hosting-page--security .sec-card-grid--4,
    .hosting-page--security .sec-card-grid--5,
    .hosting-page--security .sec-card-grid--3 {
        grid-template-columns: 1fr;
    }
}
