.percent-card{
    background:#fff;
    border-radius:22px;
    padding:22px;
    margin:26px 0 42px;
    box-shadow:0 8px 28px rgba(0,0,0,.08);
}

.percent-card h3{
    font-size:22px;
    color:#1e88d8;
    margin:0 0 18px;
    line-height:1.45;
}

.percent-desc{
    background:#fff7f7;
    border:1px solid #ffe1e1;
    border-radius:16px;
    padding:16px;
    line-height:1.85;
    margin:16px 0 22px;
    font-size:16px;
}

.percent-row{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
    margin-top:16px;
}

.percent-row.two{
    grid-template-columns:1fr 1fr;
}

.percent-field label{
    display:block;
    font-size:17px;
    font-weight:700;
    color:#4f6475;
    margin-bottom:8px;
}

.percent-input-wrap{
    display:flex;
    align-items:center;
}

.percent-input{
    width:100%;
    height:62px;
    border-radius:16px;
    border:3px solid #1e88d8;
    font-size:32px;
    font-weight:700;
    text-align:right;
    padding:0 14px;
    box-sizing:border-box;
    font-family:Consolas,Menlo,Monaco,monospace;
}

.percent-addon{
    min-width:48px;
    height:62px;
    margin-left:8px;
    border-radius:14px;
    background:#eaf6ff;
    color:#005fb8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
}

.percent-result{
    margin-top:22px;
    background:#eaf6ff;
    color:#005fb8;
    border-radius:18px;
    padding:18px;
    text-align:center;
    font-size:24px;
    font-weight:700;
    line-height:1.55;
    min-height:42px;
}

.percent-result small{
    display:block;
    color:#333;
    font-size:15px;
    line-height:1.7;
    font-weight:400;
}

.percent-divider{
    margin:48px 0;
    border-top:2px dashed #d7d7d7;
}

.percent-note{
    background:#fff7f7;
    border:1px solid #ffe1e1;
    border-radius:16px;
    padding:16px;
    line-height:1.8;
    margin:28px 0;
    color:#d94848;
    font-weight:700;
}

.percent-linkbox{
    display:block;
    background:#f3fbff;
    border:1px solid #d6f0ff;
    border-radius:18px;
    padding:18px;
    line-height:1.8;
    margin-top:28px;
    color:#1f7fbf;
    text-decoration:none;
}

.percent-linkbox h3{
    margin-top:0;
    color:#1f7fbf;
}

.percent-linkbox:hover{
    background:#eaf7ff;
}

.percent-img{
    width:100%;
    max-width:100%;
    border-radius:14px;
    margin-top:10px;
}

@media(max-width:768px){

    .percent-card{
        padding:18px;
    }

    .percent-card h3{
        font-size:19px;
    }

    .percent-desc{
        font-size:15px;
    }

    .percent-row.two{
        grid-template-columns:1fr;
    }

    .percent-input{
        height:56px;
        font-size:28px;
    }

    .percent-addon{
        height:56px;
    }

    .percent-result{
        font-size:20px;
    }
}