/* *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    background:
    linear-gradient(135deg,#0f172a 0%,#111827 50%,#1e293b 100%);
    min-height:100vh;
    color:#fff;
    overflow-x:hidden;
} */

.hero{
    position:relative;
    text-align:center;
    padding:90px 20px 60px;
}

.hero-glow{
    position:absolute;
    width:420px;
    height:420px;
    background:#3b82f6;
    filter:blur(140px);
    opacity:.18;
    top:-120px;
    left:50%;
    transform:translateX(-50%);
    z-index:0;
}

.hero h1{
    position:relative;
    z-index:1;
    font-size:56px;
    font-weight:800;
    margin-bottom:18px;
    letter-spacing:-1px;
}

.hero h1 span{
    background:linear-gradient(135deg,#3b82f6,#8b5cf6);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    position:relative;
    z-index:1;
    max-width:760px;
    margin:auto;
	color: #7c7c7c !important;

    font-size:18px;
    line-height:1.7;
}

.dashboard-container{
    max-width:1300px;
    margin:auto;
    padding:20px;
}

.glass-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.12);
       box-shadow: 0 8px 32px rgb(0 0 0 / 18%);
    border-radius:24px;
}

.main-card{
    padding:28px;
    margin-bottom:28px;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:28px;
    flex-wrap:wrap;
}

.section-header.simple{
    margin-bottom:20px;
}

.section-header h2{
    font-size:28px;
    margin-bottom:8px;
	}
.therapist-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.therapist-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:24px;
    transition:.25s ease;
}

.therapist-card:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,0.25);
}

.card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;
}

.card-top h3{
    font-size:20px;
}

.delete-btn{
    width:42px;
    height:42px;
    border:none;
    border-radius:12px;
    background:#ef4444;
    color:#fff;
    cursor:pointer;
    font-size:18px;
}

.input-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.field label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    color:#cbd5e1;
}

.field input,
.field select{
    width:100%;
    height:52px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.06);
color: #7c7c7c !important;
    padding:0 16px;
    outline:none;
    font-size:15px;
}

.field input::placeholder{
    color:#94a3b8;
}

.field input:focus,
.field select:focus{
    border-color:#3b82f6;
    box-shadow:0 0 0 4px rgba(59,130,246,.15);
}

.toggle-wrap{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:10px;
}
.switch{
    position:relative;
    width:58px;
    height:30px;
}

.switch input{
    opacity:0;
    width:0;
    height:0;
}

.slider{
    position:absolute;
    cursor:pointer;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:#475569;
    transition:.3s;
    border-radius:30px;
}

.slider:before{
    position:absolute;
    content:"";
    height:22px;
    width:22px;
    left:4px;
    bottom:4px;
    background:white;
    transition:.3s;
    border-radius:50%;
}

.switch input:checked + .slider{
    background:#10b981;
}
.add-btn,
.primary-btn,
.secondary-btn{
    border:none;
    height:52px;
    padding:0 22px;
    border-radius:14px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.25s ease;
}

.add-btn,
.primary-btn{
    background:linear-gradient(135deg,#3b82f6,#6366f1);
    color:#fff;
    box-shadow:0 10px 24px rgba(59,130,246,.25);
}

.add-btn:hover,
.primary-btn:hover{
    transform:translateY(-2px);
}
.revenue-wrap{
    display:flex;
    gap:12px;
}

.revenue-wrap select{
    width:120px;
    flex-shrink:0;
}
.secondary-btn{
    background:rgba(255,255,255,0.08);
    color:#fff;
    border:1px solid rgba(255,255,255,0.1);
}

.secondary-btn:hover{
    background:rgba(255,255,255,0.12);
}
.switch input:checked + .slider:before{
    transform:translateX(28px);
}

.bottom-actions{
    margin-top:28px;
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    margin-bottom:28px;
}

.stat-card{
    padding:24px;
}

.stat-title{
    color:#cbd5e1;
    font-size:14px;
    margin-bottom:10px;
}

.stat-number{
    font-size:21px;
    font-weight:800;
}

.result-card{
    padding:28px;
    margin-bottom:50px;
}

.result-user{
    padding:24px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    margin-bottom:18px;
}

.result-user h3{
    margin-bottom:18px;
    font-size:22px;
}

.metric-row{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.metric-row:last-child{
    border-bottom:none;
}

.metric-key{
    color:#cbd5e1;
}

.metric-value{
    font-weight:700;
}

@media(max-width:1100px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:900px){

    .therapist-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .hero h1{
        font-size:38px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .input-grid{
        grid-template-columns:1fr;
    }

    .section-header{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:768px){

    .hero h1{
        font-size:38px;
    }

}