.crm-minimalist-wrapper {
    max-width: 800px;
    margin: 2rem auto;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #111;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    box-sizing: border-box
}

.page-content {
    padding: 0rem 0 0rem !important
}

.crm-minimalist-wrapper h3,
.crm-minimalist-wrapper h2 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    width: 100%;
}

.crm-steps-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    gap: 10px
}

.crm-steps-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #eaeaea;
    z-index: 1;
    transform: translateY(-50%)
}

.crm-step-indicator {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #eaeaea;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    transition: all 0.3s ease
}

.crm-step-indicator.active .step-circle {
    border-color: #111;
    background: #111;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05)
}

.crm-step-indicator.active .step-label {
    color: #111
}

.crm-form-step {
    animation: fadeIn 0.4s ease
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.crm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem
}

.crm-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem
}

.crm-field.full-width {
    grid-column: 1 / -1
}

.crm-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444
}

.crm-field input,
.crm-field select,
.crm-field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #111;
    background: #fafafa;
    transition: all 0.2s ease;
    box-sizing: border-box
}

.crm-field input:focus,
.crm-field select:focus,
.crm-field textarea:focus {
    outline: none;
    border-color: #111;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05)
}

.crm-field input[type="file"] {
    background: #fff;
    padding: 0.6rem;
    border: 1px dashed #bbb;
    cursor: pointer
}

.crm-field small {
    font-size: 0.75rem;
    color: #888
}

.input-with-suffix {
    display: flex;
    align-items: center;
    gap: 10px
}

.suffix-text {
    font-size: 0.85rem;
    color: #666;
    min-width: 100px
}

.crm-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaea
}

.btn-minimal {
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit
}

.btn-black {
    background: #111;
    color: #fff
}

.btn-black:hover {
    background: #333;
    transform: translateY(-1px)
}

.btn-outline {
    background: transparent;
    color: #111;
    border: 1px solid #ddd
}

.btn-outline:hover {
    background: #f5f5f5;
    border-color: #ccc
}

@media (max-width:600px) {
    .crm-minimalist-wrapper {
        padding: 1.5rem;
        border-radius: 0;
        border: none;
        box-shadow: none;
        margin: 0
    }

    .crm-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem
    }

    .step-label {
        font-size: 0.65rem
    }

    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem
    }

    .crm-actions {
        flex-direction: column-reverse;
        gap: 1rem
    }

    .btn-minimal {
        width: 100%;
        text-align: center
    }
}