.promo-hero {
    padding: 20px 10px 40px;
    text-align: center;
}

.promo-hero h1 {
    color: #0f172a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.promo-hero p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 10px;
}

/* Statistics */
.promo-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 50px auto;
    max-width: 900px;
}

.promo-stats > div {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.promo-stats > div:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.09);
}

.promo-stats strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 8px;
}

.promo-stats span {
    display: block;
    font-size: .95rem;
    color: #64748b;
    font-weight: 500;
}

.promo-stats i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 12px;
}

/* Content */
.promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.promo-content .promo-header {
    font-size: 2rem;
    margin-bottom: 24px;
}

.promo-content .promo-sub-header {
    font-size: 1.5rem;
    margin-bottom: 10px;
}