/* Static informational pages (contact submitted, generic info pages) */

.static-page {
    display: flex;
    justify-content: center;
}

.static-card {
    width: 100%;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 56px 48px;
    margin-top: 20px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.static-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 22px;
}

.static-card--success .static-card__icon {
    color: #16a34a;
    background: #ecfdf5;
}

.static-card--info .static-card__icon {
    color: #2563eb;
    background: #eaf3ff;
}

.static-card__badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.static-card--success .static-card__badge {
    background: #ecfdf5;
    color: #16a34a;
}

.static-card--info .static-card__badge {
    background: #eaf3ff;
    color: #2563eb;
}

.static-card h1 {
    margin: 0 0 14px;
    font-size: 32px;
    line-height: 1.25;
    color: #111827;
}

.static-card__description {
    margin: 0 0 32px;
    max-width: 460px;
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
}

.static-card__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    width: 100%;
    max-width: 360px;
}

.static-card__actions a {
    flex: 1;
}

@media (max-width: 640px) {
    .static-card {
        padding: 40px 24px;
    }

    .static-card__actions {
        flex-direction: column;
        max-width: none;
    }
}
