

.cv-step-page *{
    box-sizing:border-box;
}

.cv-step-page{
    margin:0;
    font-family:Arial, sans-serif;
    background:linear-gradient(135deg, #eef2f3, #e6ebef);
    color:var(--cv-text);
}

/* Container */
.cv-step-page .wrap{
    max-width:820px;
    margin:26px auto;
    padding:18px;
    background:#ffffff;
    border:1px solid #e5edf3;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* Title */
.cv-step-page .title{
    font-size:20px;
    font-weight:600;
    margin:0 0 10px;
    text-align:center;
    color:#0f172a;
}

/* Section */
.cv-step-page .section{
    margin-top:14px;
    border:1px solid var(--cv-border);
    border-radius:10px;
    overflow:hidden;
    background:#fff;
}

/* Section Header */
.cv-step-page .section-h{
    background:linear-gradient(135deg, #18b394, #0f6b58);
    color:#ffffff;
    font-size:14px;
    font-weight:600;
    text-align:center;
    padding:8px;
    border-radius:10px 10px 0 0;
    box-shadow:inset 0 -2px 0 rgba(0,0,0,0.05);
    letter-spacing:0.4px;
}

/* Section Body */
.cv-step-page .section-b{
    padding:12px;
}

/* Grid */
.cv-step-page .grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

/* Card */
.cv-step-page .card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:8px;
    padding:10px;
    transition:all .15s ease;
}

.cv-step-page .card:hover{
    border-color:#18b394;
    box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

/* Label */
.cv-step-page label{
    display:block;
    font-size:13px;
    font-weight:600;
    margin:6px 0 5px;
    color:#334155;
}

/* Input */
.cv-step-page .input,
.cv-step-page select{
    width:100%;
    border:1px solid var(--cv-border);
    border-radius:8px;
    padding:8px 9px;
    font-size:13px;
    background:#fff;
    transition:all .15s ease;
}

/* Textarea */
.cv-step-page textarea.input{
    min-height:80px;
    resize:vertical;
}

/* Focus */
.cv-step-page .input:focus,
.cv-step-page select:focus,
.cv-step-page textarea:focus{
    outline:none;
    border-color:#18b394;
    box-shadow:0 0 0 2px rgba(24,179,148,0.15);
}

/* Button */
.cv-step-page .btn{
    background:linear-gradient(135deg, #18b394, #0f6b58);
    color:#ffffff;
    border:none;
    padding:10px 18px;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    min-width:140px;
    transition:all .15s ease;
}

.cv-step-page .btn:hover{
    transform:translateY(-1px) scale(1.01);
    box-shadow:0 6px 14px rgba(24,179,148,0.25);
}

/* Actions */
.cv-step-page .actions{
	
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;
    margin-top:12px;
    padding-top:8px;
    border-top:1px solid #eef2f7;
}

/* Text helpers */
.cv-step-page .muted{
    font-size:13px;
    color:#64748b;
}

.cv-step-page .danger{
    color:#b91c1c;
    font-weight:600;
}

.cv-step-page .link{
    color:#18b394;
    font-weight:600;
    text-decoration:none;
}

.cv-step-page .link:hover{
    text-decoration:underline;
}

/* Messages */
.cv-step-page .msg-ok{
    background:#e9fff8;
    border:1px solid #18b394;
    padding:10px;
    margin:10px 0;
    border-radius:8px;
}

.cv-step-page .msg-err{
    background:#fff0f0;
    border:1px solid #d33;
    padding:10px;
    margin:10px 0;
    border-radius:8px;
}

/* Responsive */
@media (max-width: 900px){
    .cv-step-page .grid{
        grid-template-columns:1fr;
    }

    .cv-step-page .wrap{
        margin:0;
        border-radius:0;
    }
}

/* =========================
   INPUT VISUAL BOOST
   ========================= */

.cv-step-page .input,
.cv-step-page textarea,
.cv-step-page select{
    background:#ffffff;
    border:1.5px solid #cbd5e1;
    box-shadow:inset 0 1px 2px rgba(0,0,0,0.04);
}

/* Focus daha güçlü */
.cv-step-page .input:focus,
.cv-step-page textarea:focus,
.cv-step-page select:focus{
    background:#ffffff;
    border-color:#18b394;
    box-shadow:
        0 0 0 2px rgba(24,179,148,0.15),
        inset 0 1px 2px rgba(0,0,0,0.04);
}

/* Card ile ayrımı artır */
.cv-step-page .card{
    background:#f8fafc;
}

/* =========================
   MOBILE (FINAL CLEAN)
   ========================= */

@media (max-width:768px){

    /* Sayfa layout */
    .cv-step-page{
        min-height:100vh;
        display:flex;
        flex-direction:column;
    }

    /* Container */
    .cv-step-page .wrap{
        flex:1;
        width:100%;
        margin:0;
        padding:16px;
        border-radius:0;
        box-shadow:none;
    }

    /* Section spacing */
    .cv-step-page .section{
        margin-top:12px;
    }

    /* Grid tek kolon */
    .cv-step-page .grid{
        grid-template-columns:1fr;
        gap:10px;
    }

    /* Card */
    .cv-step-page .card{
        padding:10px;
    }

    /* Input — font-size≥16px iOS auto-zoom önleme */
    .cv-step-page .input,
    .cv-step-page select,
    .cv-step-page textarea{
        font-size:16px;
        padding:10px;
    }

    /* Actions (sticky footer hissi) */
    .cv-step-page .actions{
        margin-top:auto;
        padding-top:10px;
        border-top:1px solid #eef2f7;
        background:#fff;
    }

    /* Buton */
    .cv-step-page .btn{
        width:100%;
        padding:14px;
        font-size:15px;
        font-weight:600;
    }

    /* Step text */
    .cv-step-page .muted{
        text-align:center;
        font-size:14px;
        font-weight:600;
        color:#334155;
        margin-bottom:6px;
    }
}