/**
 * shr-why-shred-page.css
 * Loaded only on the Why Shred page (slug: why-shred) — see functions.php
 * Scoped to .shr-whyshred-wrap — zero global side effects
 *
 * Design tokens:
 *   Primary dark:  #111d2e / #1a2332
 *   Navy deep:     #0f1923 / #1a2e45
 *   Accent red:    #e63946 / #c1121f / #ad0712
 *   Light surface: #f8fafc / #fff
 *   Border:        #e8edf2
 *   Text body:     #374151 / #4b5563
 *   Text muted:    #6b7280
 */

/* ============================================================
   BASE WRAP
   ============================================================ */
.shr-whyshred-wrap {
    box-sizing: border-box;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 64px;
    font-family: inherit;
}

/* Hide default WP page title + kill entry-content top gap */
.why-shred .entry-title,
.page-id-1449 .entry-title {
    display: none !important;
}

.why-shred .entry-content,
.page-id-1449 .entry-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ============================================================
   HERO — full-bleed dark navy, dot texture, red glow line
   ============================================================ */
.shr-whyshred-hero {
    background: linear-gradient(135deg, #111d2e 0%, #1a2e45 50%, #0f1923 100%);
    color: #fff;
    padding: 68px calc(5vw + 40px) 60px;
    margin-left: calc(-5vw);
    margin-right: calc(-5vw);
    margin-top: 0 !important;
    margin-bottom: 44px;
    position: relative;
    overflow: hidden;
}

/* Dot-grid texture */
.shr-whyshred-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
}

/* Red glow line at bottom */
.shr-whyshred-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, #e63946 35%, #e63946 65%, transparent 95%);
    z-index: 1;
}

.shr-whyshred-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

/* Eyebrow label */
.shr-whyshred-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #e63946;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.shr-whyshred-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: #e63946;
    flex-shrink: 0;
}

.shr-whyshred-hero h1 {
    font-size: clamp(1.9rem, 3.5vw, 3rem) !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.15 !important;
    margin: 0 0 20px !important;
}

.shr-whyshred-hero h1 .highlight {
    color: #e63946;
    position: relative;
}

.shr-whyshred-hero h1 .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background: #e63946;
    opacity: 0.3;
    border-radius: 2px;
}

.shr-whyshred-hero-lead {
    font-size: 1.05rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.8 !important;
    margin: 0 0 32px !important;
    max-width: 640px;
}

.shr-whyshred-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.shr-whyshred-herobtn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s;
    white-space: nowrap;
}

.shr-whyshred-herobtn--red {
    background: #e63946;
    color: #fff !important;
    border: 2px solid #e63946;
}

.shr-whyshred-herobtn--red:hover {
    background: #c1121f;
    border-color: #c1121f;
}

.shr-whyshred-herobtn--outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.shr-whyshred-herobtn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.shr-whyshred-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 52px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.shr-whyshred-stat {
    flex: 1 1 0;
    padding: 26px 18px;
    text-align: center;
    border-right: 1px solid #e8edf2;
    min-width: 130px;
}

.shr-whyshred-stat:last-child {
    border-right: none;
}

.shr-whyshred-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #e63946;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

.shr-whyshred-stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
    line-height: 1.4;
}

/* ============================================================
   SECTION HEADING — reusable component
   ============================================================ */
.shr-whyshred-section-heading {
    margin-bottom: 34px;
}

.shr-whyshred-section-heading.is-centered {
    text-align: center;
}

.shr-whyshred-section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e63946;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shr-whyshred-section-eyebrow::before,
.shr-whyshred-section-eyebrow::after {
    content: '';
    display: block;
    height: 1px;
    width: 24px;
    background: #e63946;
    flex-shrink: 0;
}

.shr-whyshred-section-eyebrow::after {
    display: none;
}

.is-centered .shr-whyshred-section-eyebrow {
    justify-content: center;
}

.is-centered .shr-whyshred-section-eyebrow::after {
    display: block;
}

.shr-whyshred-section-heading h2 {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #111d2e !important;
    margin: 0 0 10px !important;
    line-height: 1.3 !important;
}

.shr-whyshred-section-heading p {
    font-size: 0.97rem !important;
    color: #6b7280 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    max-width: 600px;
}

.is-centered .shr-whyshred-section-heading p {
    margin: 0 auto !important;
}

/* ============================================================
   REASONS GRID — 6 cards, 3-col
   ============================================================ */
.shr-whyshred-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 52px;
}

.shr-whyshred-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    padding: 28px 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}

/* Red top accent line on card */
.shr-whyshred-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e63946, #c1121f);
    opacity: 0;
    transition: opacity 0.2s;
}

.shr-whyshred-card:hover::before {
    opacity: 1;
}

.shr-whyshred-card:hover {
    box-shadow: 0 8px 28px rgba(230, 57, 70, 0.12);
    border-color: #e63946;
    transform: translateY(-3px);
}

/* Ghost card number */
.shr-whyshred-card-num {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(230, 57, 70, 0.055);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.shr-whyshred-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff0f1, #ffe0e2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    border: 1px solid rgba(230, 57, 70, 0.15);
    flex-shrink: 0;
}

.shr-whyshred-card h3 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #111d2e !important;
    margin: 0 0 10px !important;
    line-height: 1.35 !important;
}

.shr-whyshred-card p {
    font-size: 0.9rem !important;
    line-height: 1.78 !important;
    color: #4b5563 !important;
    margin: 0 !important;
}

.shr-whyshred-card-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #e63946;
    background: #fff0f1;
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 20px;
    padding: 3px 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ============================================================
   RISK PANEL — dark navy, dot texture
   ============================================================ */
.shr-whyshred-risk {
    background: linear-gradient(135deg, #111d2e 0%, #1a2e45 60%, #0f1923 100%);
    border-radius: 12px;
    padding: 52px 48px;
    margin-bottom: 52px;
    position: relative;
    overflow: hidden;
}

.shr-whyshred-risk::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.shr-whyshred-risk::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, #e63946 35%, #e63946 65%, transparent 95%);
}

.shr-whyshred-risk-inner {
    position: relative;
    z-index: 2;
}

.shr-whyshred-risk .shr-whyshred-section-eyebrow {
    color: #e63946;
}

.shr-whyshred-risk .shr-whyshred-section-eyebrow::before,
.shr-whyshred-risk .shr-whyshred-section-eyebrow::after {
    background: #e63946;
}

.shr-whyshred-risk h2 {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 10px !important;
}

.shr-whyshred-risk .shr-whyshred-section-heading p {
    color: rgba(255, 255, 255, 0.65) !important;
    max-width: 560px;
}

.shr-whyshred-risk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.shr-whyshred-risk-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 20px 18px;
    transition: background 0.2s, border-color 0.2s;
}

.shr-whyshred-risk-item:hover {
    background: rgba(230, 57, 70, 0.08);
    border-color: rgba(230, 57, 70, 0.25);
}

.shr-whyshred-risk-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: rgba(230, 57, 70, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.shr-whyshred-risk-item h4 {
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 0 5px !important;
}

.shr-whyshred-risk-item p {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.62) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* ============================================================
   WHO SHOULD SHRED — 3-col cards
   ============================================================ */
.shr-whyshred-who {
    margin-bottom: 52px;
}

.shr-whyshred-who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.shr-whyshred-who-card {
    background: #f8fafc;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    padding: 30px 26px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.shr-whyshred-who-card:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
}

.shr-whyshred-who-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.shr-whyshred-who-card h3 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #111d2e !important;
    margin: 0 0 10px !important;
}

.shr-whyshred-who-card ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.shr-whyshred-who-card ul li {
    font-size: 0.875rem !important;
    color: #4b5563 !important;
    line-height: 1.55 !important;
    padding-left: 18px !important;
    position: relative !important;
}

.shr-whyshred-who-card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #e63946;
    font-weight: 700;
}

/* ============================================================
   COMPLIANCE STRIP — light surface, left red border
   ============================================================ */
.shr-whyshred-compliance {
    background: #fff;
    border: 1px solid #e8edf2;
    border-left: 4px solid #e63946;
    border-radius: 0 10px 10px 0;
    padding: 30px 36px;
    margin-bottom: 52px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.shr-whyshred-compliance-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.shr-whyshred-compliance-text h3 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #111d2e !important;
    margin: 0 0 8px !important;
}

.shr-whyshred-compliance-text p {
    font-size: 0.9rem !important;
    color: #4b5563 !important;
    line-height: 1.75 !important;
    margin: 0 !important;
    max-width: 760px;
}

.shr-whyshred-compliance-text a {
    color: #e63946 !important;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.shr-whyshred-compliance-text a:hover {
    color: #c1121f !important;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.shr-whyshred-cta {
    background: linear-gradient(135deg, #e63946, #ad0712);
    border-radius: 10px;
    padding: 48px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.shr-whyshred-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.shr-whyshred-cta-text {
    position: relative;
    z-index: 1;
}

.shr-whyshred-cta-text h2 {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 8px !important;
    line-height: 1.3 !important;
}

.shr-whyshred-cta-text p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

.shr-whyshred-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.shr-whyshred-btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s;
    white-space: nowrap;
}

.shr-whyshred-btn--white {
    background: #fff;
    color: #e63946 !important;
    border: 2px solid #fff;
}

.shr-whyshred-btn--white:hover {
    background: transparent;
    color: #fff !important;
}

.shr-whyshred-btn--outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.shr-whyshred-btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
    .shr-whyshred-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shr-whyshred-who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shr-whyshred-risk-grid {
        grid-template-columns: 1fr;
    }

    .shr-whyshred-risk {
        padding: 40px 32px;
    }

    .shr-whyshred-stat-number {
        font-size: 1.6rem;
    }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    .shr-whyshred-hero {
        padding: 48px 24px 44px;
        margin-left: calc(-5vw);
        margin-right: calc(-5vw);
        margin-bottom: 32px;
    }

    .shr-whyshred-hero h1 {
        font-size: 1.75rem !important;
    }

    .shr-whyshred-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .shr-whyshred-who-grid {
        grid-template-columns: 1fr;
    }

    .shr-whyshred-cta {
        flex-direction: column;
        padding: 36px 24px;
    }

    .shr-whyshred-cta-btns {
        width: 100%;
    }

    .shr-whyshred-btn {
        width: 100%;
        text-align: center;
    }

    .shr-whyshred-compliance {
        flex-direction: column;
        gap: 14px;
        padding: 22px 20px;
    }

    .shr-whyshred-risk {
        padding: 32px 22px;
    }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
    .shr-whyshred-stats {
        flex-wrap: wrap;
    }

    .shr-whyshred-stat {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid #e8edf2;
    }

    .shr-whyshred-stat:nth-child(odd) {
        border-right: 1px solid #e8edf2;
    }

    .shr-whyshred-stat:last-child {
        border-bottom: none;
    }

    .shr-whyshred-stat-number {
        font-size: 1.5rem;
    }
}