/* --- STATISTICS PAGE SPECIFIC STYLES --- */

.stats-hero {
    padding: 140px 0 100px;
    background: #f8fafc;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 25px;
}

.hero-text h1 span {
    color: #38bdf8;
}

.hero-text p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
}

.glass-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* AI Bridge Section */
.bridge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bridge-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.bridge-card h4 {
    margin: 15px 0 10px;
    color: #0f172a;
}

.bridge-card p {
    font-size: 0.9rem;
    color: #64748b;
}

/* Capabilities Cards */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cap-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.cap-card:hover {
    transform: translateY(-10px);
}

.cap-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 30px;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.card-body p {
    font-size: 0.95rem;
    color: #64748b;
}

@media (max-width: 992px) {
    .hero-grid, .bridge-grid, .grid-layout {
        grid-template-columns: 1fr;
    }
}