.btn-row{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:14px 20px;
    border-radius:14px;
    border:1px solid #37ffaa;
    font-weight:700;
    transition:transform .18s ease,background .18s ease,border-color .18s ease,color .18s ease, box-shadow .18s ease;
    cursor:pointer;
    background:transparent;
    color:#f5f7f6;
}

.btn:hover{
    transform:translateY(-2px);
    background:#37ffaa;
    border-color:#37ffaa;
    color:#0b1210;
}

.btn:active{
    transform:translateY(0) scale(.98);
    background:#26d98e;
    border-color:#26d98e;
    color:#0b1210;
    box-shadow:inset 0 0 0 2px rgba(11,18,16,.24);
}

.btn--primary,
.btn--secondary{
    background:transparent;
    color:#f5f7f6;
}

.btn--full{
    width:100%;
}

.services-stack{
    display:grid;
    gap:22px;
}

.services-item{
    border:1px solid rgba(255,255,255,.10);
    border-radius:26px;
    background:rgba(255,255,255,.03);
    overflow:hidden;
    box-shadow:0 16px 40px rgba(0,0,0,.22);
}

.services-trigger{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:20px 24px;
    min-height:76px;
    border:0;
    background:none;
    color:#f5f7f6;
    font-size:28px;
    font-weight:800;
    text-align:left;
    cursor:pointer;
}

.services-arrow{
    width:52px;
    height:52px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:16px;
    display:grid;
    place-items:center;
    color:#f5f7f6;
    font-size:28px;
    line-height:1;
    flex:0 0 auto;
    background:rgba(255,255,255,.02);
}

.services-body{
    display:none;
    padding:0 24px 24px;
    gap:18px;
}

.services-item.is-open .services-body{
    display:grid;
}

.services-list{
    display:grid;
    gap:10px;
}

.services-intro{
    font-size:16px;
    color:#aab7b0;
    font-weight:700;
}

.services-groups{
    display:grid;
    gap:18px;
}

.services-group{
    display:grid;
    gap:10px;
}

.wizard-section{
    padding-top:24px;
}

.wizard-panel{
    background:#101917;
    border:1px solid #2a3a34;
    border-radius:24px;
    box-shadow:0 16px 40px rgba(0,0,0,.22);
    overflow:hidden;
}

.wizard-head{
    padding:26px 28px 0;
}

.wizard-sub{
    margin-top:8px;
    color:#aab7b0;
}

.wizard-progress{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:8px;
    margin-top:22px;
}

.wizard-progress span{
    height:8px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
}

.wizard-progress span.is-active{
    background:#37ffaa;
}

.wizard-body{
    padding:28px;
}

.wizard-step{
    display:none;
    gap:20px;
}

.wizard-step.is-active{
    display:grid;
}

.wizard-step-head{
    display:grid;
    gap:8px;
}

.wizard-step-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    justify-content:space-between;
    margin-top:8px;
}

.wizard-back{
    background:transparent;
    border:1px solid #2a3a34;
    color:#d6ddd9;
}

.wizard-options{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.wizard-options--compact{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}

.wizard-entry-options{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.wizard-option{
    position:relative;
}

.wizard-option input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.wizard-option label{
    display:grid;
    gap:10px;
    min-height:104px;
    padding:18px;
    border:1px solid #2a3a34;
    border-radius:18px;
    background:rgba(255,255,255,.02);
    cursor:pointer;
    transition:border-color .18s ease,background .18s ease,transform .18s ease;
}

.wizard-option--entry label{
    min-height:124px;
}

.wizard-option label:hover{
    border-color:#37ffaa;
    transform:translateY(-2px);
}

.wizard-option input:checked + label{
    border-color:#37ffaa;
    background:#17382d;
}

.wizard-option-title{
    font-weight:700;
    color:#f5f7f6;
}

.wizard-option-text{
    font-size:15px;
    color:#aab7b0;
    line-height:1.6;
}

.wizard-options--compact .wizard-option label{
    min-height:72px;
    padding:14px 16px;
}

.wizard-checks{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.wizard-check{
    position:relative;
    padding:0;
    border:0;
    background:none;
}

.wizard-check input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.wizard-check span{
    display:flex;
    align-items:center;
    min-height:72px;
    padding:16px 18px;
    border:1px solid #2a3a34;
    border-radius:18px;
    background:rgba(255,255,255,.02);
    color:#f5f7f6;
    cursor:pointer;
    transition:border-color .18s ease, background .18s ease, transform .18s ease;
}

.wizard-check span:hover{
    border-color:#37ffaa;
    transform:translateY(-2px);
}

.wizard-check input:checked + span{
    border-color:#37ffaa;
    background:#17382d;
}

.wizard-fields{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.wizard-field{
    display:grid;
    gap:8px;
}

.wizard-field.full{
    grid-column:1 / -1;
}

.wizard-field label{
    font-weight:600;
    color:#f5f7f6;
}

.wizard-field input,
.wizard-field select,
.wizard-field textarea{
    min-height:52px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid #2a3a34;
    background:#182521;
    color:#f5f7f6;
}

.wizard-field select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    padding-right:42px;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 14px center;
    background-size:12px;
}

.wizard-field input:focus,
.wizard-field select:focus,
.wizard-field textarea:focus{
    outline:2px solid #37ffaa;
    outline-offset:2px;
}

.wizard-field textarea{
    min-height:120px;
    padding:14px;
    resize:vertical;
}

.wizard-note{
    padding:14px 16px;
    border:1px solid rgba(64,189,118,.28);
    border-radius:16px;
    background:rgba(64,189,118,.08);
    color:#d6ddd9;
}

.wizard-note--warning{
    border-color:rgba(244,184,96,.28);
    background:rgba(244,184,96,.08);
}

.wizard-badge{
    display:inline-flex;
    align-items:center;
    min-height:38px;
    padding:0 14px;
    border-radius:999px;
    background:#17382d;
    color:#f5f7f6;
    font-weight:700;
}

.wizard-summary{
    display:grid;
    gap:16px;
    padding:18px;
    border:1px solid #2a3a34;
    border-radius:18px;
    background:rgba(255,255,255,.02);
}

.wizard-summary ul{
    display:grid;
    gap:8px;
}

.wizard-error{
    display:none;
    padding:12px 14px;
    border:1px solid rgba(255,107,107,.28);
    border-radius:14px;
    background:rgba(255,107,107,.08);
    color:#f5f7f6;
    font-size:15px;
}

.wizard-error.is-visible{
    display:block;
}

.bot-trap{
    position:absolute !important;
    left:-9999px !important;
    opacity:0 !important;
    pointer-events:none !important;
    height:0 !important;
    width:0 !important;
    overflow:hidden !important;
}

.app-shell{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:16px;
}

.app-box{
    border:1px solid #2a3a34;
    border-radius:18px;
    background:rgba(255,255,255,.02);
    overflow:hidden;
}

.app-box-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:14px 16px;
    border-bottom:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.10);
}

.app-box-head strong{
    font-weight:900;
    color:#f5f7f6;
}

.app-cal-nav{
    display:flex;
    gap:8px;
}

.app-cal-nav button{
    appearance:none;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.03);
    color:#f5f7f6;
    border-radius:12px;
    min-width:40px;
    height:40px;
    cursor:pointer;
    font-weight:900;
    transition:transform .15s ease, background .15s ease, border-color .15s ease;
}

.app-cal-nav button:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.06);
    border-color:rgba(255,255,255,.18);
}

.app-cal{
    padding:16px;
}

.app-dow{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:10px;
    padding:0 2px 12px;
    font-size:14px;
    color:#aab7b0;
    text-align:center;
    font-weight:800;
}

.app-days{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:10px;
}

.app-day-spacer{
    height:46px;
}

.app-day{
    appearance:none;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.02);
    color:#f5f7f6;
    border-radius:14px;
    height:46px;
    cursor:pointer;
    font-weight:800;
    font-size:16px;
    transition:transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.app-day:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.05);
    border-color:rgba(255,255,255,.16);
}

.app-day[disabled]{
    opacity:.24;
    cursor:not-allowed;
    transform:none;
}

.app-day.is-today{
    box-shadow:0 0 0 1px rgba(255,255,255,.16) inset;
}

.app-day.is-selected{
    border-color:rgba(55,255,170,.62);
    box-shadow:0 0 0 3px rgba(55,255,170,.14);
    background:rgba(55,255,170,.12);
}

.app-slots{
    padding:16px;
}

.app-slot-date{
    display:grid;
    gap:4px;
    margin-bottom:14px;
}

.app-slot-date strong{
    color:#f5f7f6;
}

.app-slot-date span{
    color:#aab7b0;
    font-size:15px;
}

.app-slot-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:9px;
}

.app-slot{
    appearance:none;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.02);
    color:#f5f7f6;
    border-radius:12px;
    min-height:42px;
    cursor:pointer;
    font-weight:900;
    transition:transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.app-slot:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.05);
    border-color:rgba(255,255,255,.16);
}

.app-slot.is-selected{
    border-color:rgba(55,255,170,.62);
    box-shadow:0 0 0 3px rgba(55,255,170,.14);
    background:rgba(55,255,170,.12);
}

.app-empty{
    grid-column:1/-1;
    color:#aab7b0;
    font-size:15px;
}

.app-picked{
    padding:14px 16px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.02);
    display:grid;
    gap:6px;
}

.app-picked strong{
    color:#f5f7f6;
}

.app-picked.is-invalid{
    border-color:rgba(255,107,107,.72) !important;
    background:rgba(255,107,107,.10) !important;
    box-shadow:0 0 0 3px rgba(255,107,107,.14) !important;
}

.app-mode-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}

.app-mode{
    position:relative;
}

.app-mode input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.app-mode label{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid #2a3a34;
    background:#182521;
    color:#f5f7f6;
    cursor:pointer;
    font-weight:800;
    transition:border-color .18s ease, background .18s ease, transform .18s ease;
}

.app-mode label:hover{
    transform:translateY(-1px);
    border-color:#37ffaa;
}

.app-mode input:checked + label{
    border-color:#37ffaa;
    background:#17382d;
}

.app-files-note{
    color:#aab7b0;
    font-size:14px;
    line-height:1.55;
}

.app-file-list{
    display:grid;
    gap:6px;
    color:#d6ddd9;
    font-size:15px;
}

.upload-dropzone{
    display:grid;
    gap:14px;
    padding:18px;
    border:1px dashed rgba(255,255,255,.18);
    border-radius:18px;
    background:rgba(255,255,255,.02);
    transition:border-color .18s ease, background .18s ease;
}

.upload-dropzone.is-dragover{
    border-color:#37ffaa;
    background:rgba(55,255,170,.06);
}

.upload-dropzone-text{
    color:#d6ddd9;
    line-height:1.6;
}

.form-modal{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:rgba(0,0,0,.62);
    z-index:2000;
}

.form-modal.is-open{
    display:flex;
}

.form-modal-card{
    width:100%;
    max-width:520px;
    padding:28px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.10);
    background:#0f1714;
    display:grid;
    gap:14px;
    box-shadow:0 24px 60px rgba(0,0,0,.45);
}

@media (max-width:980px){
    .wizard-progress{
        grid-template-columns:repeat(4,1fr);
    }

    .wizard-fields,
    .wizard-options,
    .wizard-options--compact,
    .wizard-entry-options,
    .wizard-checks,
    .app-shell,
    .app-mode-grid,
    .app-slot-grid{
        grid-template-columns:1fr;
    }

    .wizard-field.full{
        grid-column:auto;
    }
}