/* Results Page Specific Styles */

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.stats-section .section-title {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-card {
    padding: 40px 20px;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    display: block;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 18px;
    color: #ccc;
    font-weight: 400;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 14px;
    color: #999;
    line-height: 1.4;
}

/* Case Studies Section */
.case-studies-section {
    padding: 100px 0;
    background: #fafafa;
}

.case-studies-section .section-title {
    color: #1a1a1a;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.case-study-card {
    background: white;
    padding: 60px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.case-study-company {
    font-size: 14px;
    color: #999;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.case-study-description {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-section .section-title {
    color: #1a1a1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-quote {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 14px;
    color: #666;
}

/* Transformation Section */
.transformation-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.transformation-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.transformation-quote {
    font-size: 36px;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    margin-bottom: 40px;
    font-style: italic;
}

.transformation-description {
    font-size: 20px;
    color: #ccc;
    line-height: 1.6;
}

/* Mobile Responsive - Results Page */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .case-studies-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .transformation-quote {
        font-size: 28px;
    }
}