/* ============================================================
   RANSOMWARE RECOVERY PAGE SPECIFIC STYLES
   ============================================================ */

/* Hero */
.hero-ransomware {
    position: relative;
    background: linear-gradient(135deg, #0d1b3e 0%, #1a3a6e 60%, #1565c0 100%);
    padding: 100px 24px 80px;
    color: #fff;
    overflow: hidden;
}

.hero-ransomware .hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.hero-ransomware .hero-content {
    position: relative;
    max-width: 800px;
    z-index: 2;
}

.hero-ransomware .hero-badge {
    display: inline-block;
    background: rgba(33, 150, 243, 0.25);
    color: #64b5f6;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(100, 181, 246, 0.4);
    margin-bottom: 20px;
}

.hero-ransomware .hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.1;
    color: #fff;
}

.hero-ransomware .hero-line {
    width: 60px;
    height: 4px;
    background: #2196f3;
    margin-bottom: 20px;
    border-radius: 2px;
}

.hero-ransomware .hero-content p {
    font-size: 18px;
    color: #90caf9;
    font-weight: 400;
    margin: 0;
}

/* Alert Banner */
.alert-banner-rw {
    background: #fff;
    padding: 48px 24px;
    border-bottom: 3px solid #2196f3;
}

.alert-banner-rw .alert-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.alert-banner-rw .alert-icon {
    font-size: 36px;
    flex-shrink: 0;
    margin-top: 4px;
    color: #1565c0;
    font-weight: 700;
}

.alert-banner-rw h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0d1b3e;
    margin: 0 0 12px;
}

.alert-banner-rw p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 10px;
}

.alert-banner-rw p:last-child {
    margin-bottom: 0;
}

/* Immediate Action */
.rw-triggers {
    background: #eef1f8;
    padding: 70px 24px;
}

.rw-triggers .trigger-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.rw-triggers h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0d1b3e;
    text-align: center;
    margin-bottom: 12px;
}

.rw-triggers .trigger-sub {
    text-align: center;
    color: #555;
    margin-bottom: 36px;
    font-size: 15px;
}

.trigger-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.trigger-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease;
}

.trigger-card:hover {
    transform: translateY(-4px);
}

.trigger-card .trigger-icon {
    font-size: 28px;
    flex-shrink: 0;
    color: #1565c0;
    font-weight: 700;
}

.trigger-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #0d1b3e;
    line-height: 1.5;
}

.trigger-note {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #1565c0;
    background: #e3f2fd;
    padding: 16px 24px;
    border-radius: 10px;
    margin: 0;
}

/* What We Do */
.rw-what {
    background: #fff;
    padding: 70px 24px;
}

.rw-what .what-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.rw-what h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0d1b3e;
    text-align: center;
    margin-bottom: 40px;
}

.rw-what-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.rw-what-card {
    background: #f5f8ff;
    border-radius: 14px;
    padding: 30px 28px;
    border-left: 4px solid #2196f3;
    transition: transform 0.2s ease;
}

.rw-what-card:hover {
    transform: translateY(-4px);
}

.rw-what-card.wide {
    grid-column: 1 / -1;
}

.rw-what-card .card-icon {
    font-size: 32px;
    margin-bottom: 14px;
    color: #1565c0;
    font-weight: 700;
}

.rw-what-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b3e;
    margin: 0 0 14px;
}

.rw-what-card ul {
    margin: 0;
    padding-left: 18px;
}

.rw-what-card ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Risks */
.rw-risks {
    background: #eef1f8;
    padding: 70px 24px;
}

.rw-risks .risks-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.rw-risks h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0d1b3e;
    text-align: center;
    margin-bottom: 40px;
}

.rw-risks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.risk-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    border-top: 3px solid #c62828;
}

.risk-card .risk-icon {
    font-size: 20px;
    flex-shrink: 0;
    color: #c62828;
    font-weight: 700;
}

.risk-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #0d1b3e;
}

.risks-note {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #1565c0;
    background: #e3f2fd;
    padding: 16px 24px;
    border-radius: 10px;
    margin: 0;
}

/* Why CyberTech - Stats */
.rw-stats {
    background: #fff;
    padding: 70px 24px;
}

.rw-stats .stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.rw-stats h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0d1b3e;
    text-align: center;
    margin-bottom: 40px;
}

.rw-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.stat-card {
    text-align: center;
    background: #0d1b3e;
    border-radius: 16px;
    padding: 36px 16px;
    color: #fff;
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
}

.stat-card .stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #64b5f6;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.stat-card .stat-sub {
    font-size: 11px;
    color: #90caf9;
}

/* Real Case Insight */
.rw-case {
    background: #eef1f8;
    padding: 70px 24px;
}

.rw-case .case-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.rw-case h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0d1b3e;
    text-align: center;
    margin-bottom: 40px;
}

.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.case-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.case-card.problem {
    border-left: 4px solid #c62828;
}

.case-card.response {
    border-left: 4px solid #2196f3;
}

.case-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b3e;
    margin: 0 0 14px;
}

.case-card p {
    font-size: 14px;
    color: #555;
    margin: 0 0 10px;
    line-height: 1.6;
}

.case-card ul {
    margin: 0;
    padding-left: 18px;
}

.case-card ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.case-result {
    font-size: 14px;
    font-weight: 700;
    color: #1565c0;
    background: #e3f2fd;
    padding: 10px 14px;
    border-radius: 8px;
    margin: 16px 0 0;
}

/* CTA */
.cta-rw {
    background: linear-gradient(135deg, #1565c0, #0d1b3e);
    padding: 70px 24px;
}

.cta-rw .cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-rw h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.cta-rw .cta-sub {
    font-size: 16px;
    color: #90caf9;
    margin: 0 0 18px;
}

.cta-rw .cta-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-rw .cta-contact span {
    font-size: 14px;
    color: #cce4ff;
}

.cta-rw .cta-contact a {
    color: #64b5f6;
    text-decoration: none;
}

.cta-rw .cta-contact a:hover {
    text-decoration: underline;
}

.cta-rw .cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-rw .cta-btn-primary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: #2196f3;
    color: #fff;
    border: none;
    transition: background 0.3s ease;
}

.cta-rw .cta-btn-primary:hover {
    background: #1976d2;
    color: #fff;
}

.cta-rw .cta-btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta-rw .cta-btn-secondary:hover {
    background: #fff;
    color: #0d1b3e;
}

/* Quote */
.rw-quote {
    background: #0d1b3e;
    padding: 70px 24px;
}

.rw-quote .quote-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.rw-quote blockquote {
    font-size: clamp(17px, 2.2vw, 22px);
    font-style: italic;
    color: #e3f2fd;
    line-height: 1.7;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 24px;
    border: none;
    padding: 0;
}

.rw-quote .quote-author {
    text-align: center;
    color: #90caf9;
}

.rw-quote .quote-author strong {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
}

.rw-quote .quote-author span {
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .alert-banner-rw .alert-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .rw-what-grid {
        grid-template-columns: 1fr;
    }

    .rw-what-card.wide {
        grid-column: auto;
    }

    .case-grid {
        grid-template-columns: 1fr;
    }

    .cta-rw .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cta-rw .cta-contact {
        align-items: center;
    }

    .cta-rw .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-ransomware {
        padding: 60px 16px 50px;
    }

    .hero-ransomware .hero-content h1 {
        font-size: 30px;
    }

    .hero-ransomware .hero-content p {
        font-size: 15px;
    }

    .alert-banner-rw {
        padding: 30px 16px;
    }

    .alert-banner-rw h2 {
        font-size: 18px;
    }

    .rw-triggers {
        padding: 40px 16px;
    }

    .rw-triggers h2 {
        font-size: 24px;
    }

    .rw-what {
        padding: 40px 16px;
    }

    .rw-what h2 {
        font-size: 24px;
    }

    .rw-what-card {
        padding: 20px 18px;
    }

    .rw-risks {
        padding: 40px 16px;
    }

    .rw-risks h2 {
        font-size: 24px;
    }

    .rw-stats {
        padding: 40px 16px;
    }

    .rw-stats h2 {
        font-size: 24px;
    }

    .stat-card {
        padding: 24px 12px;
    }

    .stat-card .stat-number {
        font-size: 20px;
    }

    .rw-case {
        padding: 40px 16px;
    }

    .rw-case h2 {
        font-size: 24px;
    }

    .case-card {
        padding: 20px 18px;
    }

    .cta-rw {
        padding: 40px 16px;
    }

    .cta-rw h2 {
        font-size: 22px;
    }

    .cta-rw .cta-btn-primary,
    .cta-rw .cta-btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .cta-rw .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .rw-quote {
        padding: 40px 16px;
    }
}

@media (max-width: 400px) {
    .hero-ransomware .hero-content h1 {
        font-size: 24px;
    }

    .rw-triggers h2,
    .rw-what h2,
    .rw-risks h2,
    .rw-stats h2,
    .rw-case h2 {
        font-size: 20px;
    }

    .trigger-card {
        padding: 16px 14px;
    }

    .trigger-card p {
        font-size: 13px;
    }
}