/* --- ACCOUNTING FORM STYLES (Isolated with acc- prefix) --- */

.acc-form-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    font-family: "Inter", sans-serif;
    color: #1a1f36;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.acc-container-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: flex-start;
}

/* Stepper */
.acc-stepper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0 50px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.acc-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

/* Switcher Redesign */
.acc-switcher {
    background: #f1f5f9;
    padding: 4px;
    border-radius: 100px;
    display: flex;
    gap: 0;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.acc-switch-btn {
    padding: 8px 20px;
    border: none;
    background: transparent;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.acc-switch-btn.active {
    background: #ff7a21;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 122, 33, 0.3);
}

.acc-save-badge {
    display: none;
}

.acc-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 12px;
    border: 2px solid #e2e8f0;
    font-size: 16px;
}

.acc-step-item.active .acc-step-circle {
    background: #ff7a21;
    color: white;
    border-color: #ff7a21;
}

.acc-step-label {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: #64748b;
}

.acc-step-item.active .acc-step-label {
    color: #ff7a21;
}

.acc-step-subtitle {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
}

.acc-step-line {
    position: absolute;
    top: 20px;
    left: calc(50% + 20px);
    right: calc(-50% + 20px);
    height: 2px;
    background: #e2e8f0;
    z-index: -1;
}

/* Main Content Box */
.acc-step-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
}

/* Section Titles */
.acc-section-title {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.acc-section-h {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Date Selection Grid */
.acc-date-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.acc-date-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    min-width: 120px;
}

.acc-date-card:hover {
    border-color: #ff7a21;
}

.acc-date-card.active {
    border: 2px solid #ff7a21;
    background: #fffaf5;
}

.acc-date-card h4 {
    margin: 0;
    font-size: 14px;
    color: #1a1f36;
}

.acc-date-card span {
    font-size: 11px;
    color: #94a3b8;
    display: block;
    margin-top: 2px;
}

/* Sidebar Summary */
.acc-sidebar {
    position: sticky;
    top: 20px;
}

.acc-summary-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.acc-summary-header {
    background: #1a1f36;
    color: white;
    padding: 20px;
    font-size: 20px;
    font-weight: 800;
}

.acc-summary-body {
    padding: 20px;
}

.acc-summary-inner-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.acc-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.acc-summary-total-wrap {
    border-top: 1px solid #e2e8f0;
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
}

.acc-summary-total-wrap .price-label {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 5px;
}

.acc-summary-total-wrap .price-val {
    font-size: 36px;
    font-weight: 800;
    color: #1a1f36;
}

/* Badges in Sidebar */
.acc-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
}

.acc-trust-badge.green {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.acc-trust-badge.blue {
    background: #f0f9ff;
    color: #075985;
    border: 1px solid #bae6fd;
}

/* Contact in Sidebar */
.acc-summary-contact {
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.acc-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #475569;
}

/* Revenue Select */
.acc-select-wrap {
    margin-bottom: 30px;
}

.acc-select-wrap select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 16px;
    background: #ffffff;
}

/* Plan Toggle in Step 1 */
.acc-plan-toggle-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* Multi-Step Forms in Step 1 */
.acc-step-content-item {
    margin-bottom: 40px;
}

/* Plan Selection Cards */
.acc-plans-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.acc-plan-mini-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    cursor: pointer;
    position: relative;
}

.acc-plan-mini-card.active {
    border: 2px solid #ff7a21;
}

/* Continue Button */
.acc-continue-btn {
    background: #ff7a21;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.acc-continue-btn.disabled {
    background: #ffb38a !important;
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

/* Revenue & Billing Row */
.acc-rev-billing-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 35px;
}

.acc-rev-billing-row>div:first-child {
    flex: 1;
}

/* Crossed out prices */
.acc-price-old {
    text-decoration: line-through;
    color: #94a3b8;
    margin-right: 8px;
    font-weight: 400;
}

.acc-price-new {
    color: #ff7a21;
    font-weight: 700;
}

/* Discount row */
.acc-discount-row {
    color: #166534;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}


/* Select Box Styling */
.acc-select-wrap {
    position: relative;
    width: 100%;
}

.acc-revenue-select {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1f36;
    appearance: none;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a1f36' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center;
    background-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.acc-revenue-select:focus {
    outline: none;
    border-color: #ff7a21;
    box-shadow: 0 0 0 4px rgba(255, 122, 33, 0.1);
}


/* Add-ons Step Styles */
.acc-addon-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.acc-addon-card:hover {
    border-color: #ff7a21;
}

.acc-addon-card.active {
    border: 1px solid #ff7a21;
    background: #fffaf5;
}

.acc-addon-icon {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.acc-custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.acc-custom-checkbox.checked {
    background: #ff7a21;
    border-color: #ff7a21;
}

.acc-custom-checkbox.checked::after {
    content: "✓";
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.acc-sub-opt-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.acc-sub-opt-label:hover {
    background: #f8fafc;
}

.acc-sub-opt-label.selected {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.acc-custom-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    margin-top: 2px;
    position: relative;
    flex-shrink: 0;
}

.acc-custom-radio.checked {
    border-color: #3b82f6;
}

.acc-custom-radio.checked::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.acc-back-btn {
    border: 1px solid #e2e8f0;
    background: white;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    color: #64748b;
}

/* Form Step Styles */
.acc-form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.acc-field-wrap {
    margin-bottom: 5px;
}

.acc-field-wrap.half {
    width: calc(50% - 10px);
}

.acc-field-wrap.full {
    width: 100%;
}

.acc-field-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 8px;
}

.acc-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1f36;
    transition: all 0.3s ease;
    background: #ffffff;
}

.acc-input:focus {
    outline: none;
    border-color: #ff7a21;
    box-shadow: 0 0 0 3px rgba(255, 122, 33, 0.1);
}

.acc-input::placeholder {
    color: #cbd5e1;
}

/* Nomination Step Styles */
.acc-nomination-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.acc-nomination-card:hover {
    border-color: #ff7a21;
}

.acc-nomination-card.active {
    border: 1px solid #ff7a21;
    background: #fffaf5;
}

.acc-nom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.acc-nom-radio.active {
    border-color: #ff7a21;
}

.acc-nom-radio.active::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #ff7a21;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 992px) {
    .acc-container-grid {
        grid-template-columns: 1fr;
    }

    .acc-date-grid {
        grid-template-columns: 1fr 1fr;
    }

    .acc-rev-billing-row {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Custom Checkbox */
.acc-custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    background: #fff;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.acc-custom-checkbox.checked {
    border-color: #ff7a21;
    background: #ff7a21;
}

.acc-custom-checkbox.checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}