* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255, 203, 40, 0.28), transparent 34%),
        radial-gradient(circle at bottom right, rgba(22, 91, 188, 0.24), transparent 36%),
        linear-gradient(135deg, #f4f8ff 0%, #eef3fb 45%, #ffffff 100%);
}

.pageWrap {
    width: 100%;
    min-height: 100vh;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.callCard {
    width: 100%;
    max-width: 430px;
    position: relative;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 22px;
    padding: 34px 26px 28px 26px;
    box-shadow: 0 18px 45px rgba(20, 35, 65, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.closeBtn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(9, 40, 95, 0.08);
    color: #09285f;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
    box-shadow: none;
    transition: 0.18s ease;
}

.closeBtn:hover {
    background: rgba(9, 40, 95, 0.16);
    transform: none;
    box-shadow: none;
}

.closeBtn:active {
    transform: scale(0.96);
}

.iconCircle {
    width: 68px;
    height: 68px;
    margin: 0 auto 14px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #09285f, #1d66d1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(29, 102, 209, 0.30);
    border: 5px solid #ffc928;
}

.iconCircle span {
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
}

h1 {
    margin: 0;
    text-align: center;
    font-size: 25px;
    letter-spacing: 0.5px;
    color: #111827;
}

.desc {
    margin: 10px auto 24px auto;
    text-align: center;
    color: #5b6472;
    font-size: 15px;
    line-height: 1.45;
    max-width: 330px;
}

label {
    display: block;
    margin-top: 16px;
    margin-bottom: 7px;
    font-weight: 700;
    font-size: 14px;
    color: #202938;
}

input {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    font-size: 16px;
    border: 1px solid #d7dde8;
    border-radius: 12px;
    background: #ffffff;
    outline: none;
    transition: 0.18s ease;
}

input:focus {
    border-color: #1d66d1;
    box-shadow: 0 0 0 4px rgba(29, 102, 209, 0.12);
}

input::placeholder {
    color: #9aa3b2;
}

.phoneBox {
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    border: 1px solid #d7dde8;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    transition: 0.18s ease;
}

.phoneBox:focus-within {
    border-color: #1d66d1;
    box-shadow: 0 0 0 4px rgba(29, 102, 209, 0.12);
}

.fixedZero {
    height: 100%;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f6fb;
    color: #09285f;
    font-size: 17px;
    font-weight: 700;
    border-right: 1px solid #e3e8f1;
}

.phoneBox input {
    border: none;
    border-radius: 0;
    height: 100%;
    padding-left: 12px;
    box-shadow: none;
}

.phoneBox input:focus {
    border: none;
    box-shadow: none;
}

button {
    width: 100%;
    height: 50px;
    margin-top: 24px;
    border: none;
    border-radius: 13px;
    background: linear-gradient(135deg, #09285f, #1d66d1);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 22px rgba(29, 102, 209, 0.28);
    transition: 0.18s ease;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 26px rgba(29, 102, 209, 0.34);
}

button:active {
    transform: translateY(0);
}

.mesaj {
    margin-top: 18px;
    padding: 13px 14px;
    border-radius: 12px;
    background: #fff4d2;
    border: 1px solid #ffe09a;
    color: #4a3500;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .pageWrap {
        padding: 14px;
        align-items: flex-start;
        padding-top: 28px;
    }

    .callCard {
        padding: 30px 22px 24px 22px;
        border-radius: 20px;
    }

    h1 {
        font-size: 23px;
    }

    .desc {
        font-size: 14px;
    }
}