﻿body{

    margin:0;

    font-family:Arial,Helvetica,sans-serif;

    background:
    linear-gradient(
    180deg,
    #edf6ff 0%,
    #ffffff 45%,
    #f5faff 100%);

}

body::before{

    content:"";

    position:fixed;

    width:520px;

    height:520px;

    right:-220px;

    top:-170px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,102,204,.08),
    transparent);

}

body::after{

    content:"";

    position:fixed;

    width:350px;

    height:350px;

    left:-120px;

    bottom:-120px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,170,255,.06),
    transparent);

}

.coming-wrapper{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:40px 20px;

}

.coming-card{

    max-width:950px;

    width:100%;

    background:white;

    border-radius:28px;

    padding:60px;

    text-align:center;

    border:1px solid #d8e8ff;

    box-shadow:
    0 20px 60px rgba(0,70,170,.12);

    position:relative;

    overflow:hidden;

}

.coming-card::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    top:-140px;

    right:-100px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,120,255,.10),
    transparent);

}

.coming-icon{

    width:120px;

    height:120px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#edf6ff;

    font-size:58px;

    box-shadow:
    0 10px 30px rgba(0,102,204,.12);

}

.coming-card h1{

    margin-top:30px;

    color:#0b5ed7;

    font-size:42px;

    line-height:1.3;

}

.intro{

    max-width:760px;

    margin:25px auto;

    font-size:19px;

    line-height:1.9;

    color:#56687d;

}

.intro strong{

    color:#0056b3;

}

.launch-box{

    margin-top:45px;

    background:#f7fbff;

    border:1px solid #dbeaff;

    border-radius:22px;

    padding:40px;

}

.launch-box h2{

    margin-top:0;

    color:#0b5ed7;

    font-size:32px;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:30px;

}

.service-item{

    background:white;

    border:1px solid #d8e8ff;

    border-radius:15px;

    padding:18px;

    font-size:17px;

    font-weight:600;

    color:#35516d;

    transition:.3s;

}

.service-item:hover{

    transform:translateY(-4px);

    box-shadow:
    0 10px 25px rgba(0,102,204,.10);

}

.footer-note{

    margin:40px auto;

    max-width:760px;

    font-size:18px;

    color:#5a6876;

    line-height:1.9;

}

.back-btn{

    display:inline-block;

    padding:16px 36px;

    background:
    linear-gradient(
    135deg,
    #0056b3,
    #1d8fff);

    color:white;

    text-decoration:none;

    border-radius:14px;

    font-size:17px;

    font-weight:700;

    box-shadow:
    0 10px 25px rgba(0,90,220,.20);

    transition:.3s;

}

.back-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 18px 35px rgba(0,90,220,.25);

}

@media(max-width:768px){

    .coming-card{

        padding:35px 25px;

    }

    .coming-card h1{

        font-size:30px;

    }

    .launch-box{

        padding:25px;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .intro,
    .footer-note{

        font-size:16px;

    }

}