:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-b806b81 */.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.coming-soon::before,
.coming-soon::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.coming-soon::before {
    width: 450px;
    height: 450px;
    background: #e4f3ff;
    top: -180px;
    left: -180px;
}

.coming-soon::after {
    width: 500px;
    height: 500px;
    background: #edf7ff;
    bottom: -250px;
    right: -200px;
}

.coming-soon__content {
    width: 100%;
    max-width: 750px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s ease forwards;
}

.coming-soon__badge {
    display: inline-block;
    padding: 9px 18px;
    margin-bottom: 25px;
    border-radius: 50px;
    background: #ffffff;
    color: #1683d8;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.coming-soon h1 {
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 25px;
    font-weight: 800;
}

.coming-soon p {
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.7;
    color: #667085;
}

.coming-soon__form {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    padding: 7px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.coming-soon__form input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    padding: 15px 17px;
    font-size: 15px;
    background: transparent;
    color: #172033;
}

.coming-soon__form input::placeholder {
    color: #98a2b3;
}

.coming-soon__form button {
    border: 0;
    outline: none;
    padding: 15px 25px;
    border-radius: 10px;
    background: #1683d8;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.coming-soon__form button:hover {
    background: #0d6eb8;
    transform: translateY(-1px);
}

.coming-soon__social {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.coming-soon__social a {
    color: #667085;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.coming-soon__social a:hover {
    color: #1683d8;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {

    .coming-soon {
        padding: 25px 18px;
    }

    .coming-soon h1 {
        font-size: 44px;
        letter-spacing: -1px;
    }

    .coming-soon p {
        font-size: 16px;
    }

    .coming-soon__form {
        flex-direction: column;
        padding: 8px;
    }

    .coming-soon__form input {
        width: 100%;
        padding: 15px;
        text-align: center;
    }

    .coming-soon__form button {
        width: 100%;
    }

    .coming-soon__social {
        gap: 18px;
        flex-wrap: wrap;
    }
}/* End custom CSS */