﻿body {
}
.coming {
    padding: 90px 0 70px;
    background: #f5f7fa;
}

.coming-inner {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
}

.coming-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #90a3bb;
    margin-bottom: 10px;
}

.coming-title {
    margin: 0 0 10px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #0c1b33;
}

.coming-sub {
    margin: 0 0 26px;
    max-width: 720px;
    color: #5a6b82;
    line-height: 1.65;
    font-size: 15px;
}

.coming-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e6edf6;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(12,27,51,0.06);
    max-width: 780px;
}

.coming-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #eef3fb;
    border: 1px solid #e2ebf8;
    color: #274060;
    font-size: 18px;
    flex: 0 0 44px;
}

.coming-card-title {
    font-weight: 800;
    color: #0c1b33;
    margin-bottom: 6px;
    font-size: 16px;
}

.coming-card-desc {
    color: #5a6b82;
    line-height: 1.6;
    font-size: 14px;
}

.coming-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.coming-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

    .coming-btn.primary {
        background: #0c1b33;
        color: #fff;
    }

        .coming-btn.primary:hover {
            transform: translateY(-1px);
        }

    .coming-btn.ghost {
        background: #ffffff;
        color: #0c1b33;
        border: 1px solid #e6edf6;
    }

        .coming-btn.ghost:hover {
            background: #f6f9fe;
            transform: translateY(-1px);
        }