/* 
 * Zero-Click Recovery Page Specific Styles
 */

.zero-click-recovery .hero-section {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.zero-click-recovery .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Fix the stats boxes */
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    background-color: #163680;
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    color: white;
}

.stat-box.highlight {
    background-color: #0e9c65;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Traffic Loss Visualization */
.traffic-loss-visualization {
    position: relative;
    margin: 40px 0;
}

.stat-overlay {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.stat-card {
    background: white;
    border-radius: 8px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #d1d3e2;
    transition: transform 0.3s ease;
    width: 200px;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card.highlight {
    border-left-color: #1cc88a;
}

.stat-card .stat-title {
    font-size: 1rem;
    font-weight: 600;
    color: #5a5c69;
    display: block;
    margin-bottom: 5px;
}

.stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin: 10px 0;
}

.stat-card .stat-desc {
    font-size: 0.85rem;
    color: #858796;
}

.stat-card:first-child .stat-value {
    color: #e74a3b;
}

.stat-card.highlight .stat-value {
    color: #1cc88a;
}

/* Framework Visualization */
.framework-visualization {
    position: relative;
    margin: 40px 0;
}

.framework-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.highlight-tag {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Resources Section */
.recovery-resources {
    background-color: #f8f9fc;
    padding: 70px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resource-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #4e73df;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.resource-card.featured {
    border-top-color: #1cc88a;
}

.card-icon {
    font-size: 2.5rem;
    color: #4e73df;
    margin-bottom: 20px;
}

.resource-card.featured .card-icon {
    color: #1cc88a;
}

.resource-card h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #2e59d9;
}

.resource-card.featured h4 {
    color: #1cc88a;
}

.resource-card p {
    color: #5a5c69;
    margin-bottom: 25px;
}

/* Timeline Section */
.timeline-section {
    padding: 70px 0;
    background-color: white;
}

.recovery-timeline {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.recovery-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e8e9ef;
    z-index: 1;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 80px;
    margin-top: 10px;
}

.marker-label {
    background-color: #4e73df;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.marker-label::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #4e73df transparent transparent transparent;
}

.marker-content {
    text-align: center;
    max-width: 150px;
}

.marker-content h5 {
    font-size: 1rem;
    margin: 0 0 5px;
    color: #224abe;
}

.marker-content p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

.week-12 .marker-label {
    background-color: #1cc88a;
}

.week-12 .marker-label::before {
    border-color: #1cc88a transparent transparent transparent;
}

.timeline-chart-container {
    max-width: 800px;
    margin: 50px auto 20px;
    height: 350px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e9ef;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.stat-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.3px;
    opacity: 1;
    margin: 0;
}

/* Problem & Solution Sections */
.problem-section, .solution-section, .results-section {
    padding: 70px 0;
}

.problem-section {
    background-color: #f8f9fc;
}

.section-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #5a5c69;
    line-height: 1.8;
}

.quote-box {
    background-color: #fff;
    border-left: 5px solid #4e73df;
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quote-box blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #2e2f37;
    line-height: 1.6;
}

.quote-box cite {
    color: #5a5c69;
    font-weight: 500;
}

/* Methodology Steps */
.methodology-steps {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    background-color: #4e73df;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    margin-top: 0;
    color: #224abe;
    font-size: 1.2rem;
}

.step-content p {
    color: #5a5c69;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Case Studies Grid */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case-study-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.industry-tag {
    display: inline-block;
    background-color: #e8eaf6;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #3949ab;
}

.recovery-stat {
    margin: 15px 0;
    display: flex;
    align-items: baseline;
}

.percentage {
    color: #1cc88a;
    font-size: 2rem;
    font-weight: bold;
    margin-right: 5px;
}

.timeframe {
    color: #5a5c69;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #224abe 0%, #4e73df 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.image-caption {
    text-align: center;
    font-style: italic;
    margin-top: 15px;
    color: #6c757d;
    font-size: 0.95rem;
}

.full-width-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
}

.chart-container {
    max-width: 800px;
    margin: 40px auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chart-caption {
    text-align: center;
    margin-top: 15px;
    color: #6c757d;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-stats {
        gap: 15px;
    }
    
    .stat-box {
        padding: 20px;
        min-width: 200px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-box {
        width: 100%;
    }
    
    .stat-box.highlight {
        transform: scale(1);
        margin: 10px 0;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
}
