/* ==========================
   BUSINESS-DEBT-SCHEDULE FORM — page-specific styles
   Loaded by /business-debt-schedule/index.html
   Shared form styles live in /forms.css
   ========================== */

/* ══════════ BUSINESS DEBT SCHEDULE — page-specific only ══════════ */
        .bds-step {
            display: none;
        }

        .bds-step.active {
            display: block;
        }

        /* Currency input wrapper */
        .currency-input-wrap {
            position: relative;
            min-width: 0;
        }

        .currency-input-wrap .currency-sign {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'Vectora Light';
            font-size: 16px;
            color: #718096;
            pointer-events: none;
            z-index: 1;
        }

        .currency-input-wrap input {
            padding-left: 26px !important;
            width: 100%;
        }

        /* Step intros */
        .bds-step1-intro {
            font-family: 'Vectora Roman';
            font-size: 18px;
            text-align: left;
            margin-bottom: 28px;
        }

        .bds-step2-intro {
            font-family: 'Vectora Roman';
            font-size: 18px;
            text-align: left;
            margin-bottom: 24px;
            line-height: 1.4;
        }

        /* GO BACK link */
        .bds-go-back {
            display: inline-block;
            font-family: 'Vectora Roman';
            text-align: left;
            font-size: 15px;
            font-weight: 700;
            -webkit-text-stroke: 0.4px;
            color: #6ab235;
            padding: 0 0 24px 0;
            text-decoration: none;
            cursor: pointer;
        }

        .bds-go-back:hover {
            color: #000;
        }

        /* Debt sheet header */
        .debt-sheet-header {
            margin-bottom: 3px !important;
        }

        .debt-sheet-header .field-label {
            font-family: 'Vectora Roman';
            font-size: 15px;
            line-height: 1;
            color: #000;
        }

        /* Debt totals row */
        .debt-totals-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 8px;
            padding: 14px 0 8px;
            margin-bottom: 16px;
            text-align: center;
        }

        .debt-totals-label {
            font-family: 'Vectora Bold';
            font-size: 17px;
            color: #000;
        }

        .debt-totals-value {
            font-family: 'Vectora Bold';
            font-size: 22px;
            letter-spacing: -0.04em;
            color: #6ab235;
            margin-top: 4px;
        }

        /* Balance letters question */
        .bds-question {
            font-family: 'Vectora Roman';
            text-align: center;
            font-size: 16px;
            margin: 20px 0 8px;
        }

        .bds-yes-link {
            display: block;
            font-family: 'Vectora Roman';
            text-align: center;
            font-size: 17px;
            font-weight: 700;
            -webkit-text-stroke: 0.4px;
            color: #6ab235;
            padding: 8px 0 16px;
            text-decoration: none;
            cursor: pointer;
        }

        .bds-yes-link:hover {
            color: #000;
        }

        /* Balance letters upload (hidden initially) */
        .bds-upload-section {
            display: none;
        }

        .bds-upload-section.show {
            display: block;
        }

        .bds-upload-instr {
            font-family: 'Vectora Roman';
            text-align: center;
            font-size: 16px;
            margin-bottom: 8px;
        }

        /* UPLOAD */
        .upload-minimal {
            display: block;
            width: 100%;
            cursor: pointer;
        }

        .upload-box {
            background: #f5f7fa;
            border: 0 solid #e0e6ee;
            border-radius: 6px;
            padding: 14px 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-family: 'Vectora Light';
            font-size: 15px;
            color: #798494;
            transition: all 0.2s ease;
        }

        .upload-icon {
            width: 15px;
            height: 15px;
            stroke-width: 2;
            color: #798494;
            opacity: 0.7;
        }

        .upload-minimal:hover .upload-box {
            background: #dadfe6;
            color: #000;
        }

        .upload-box.has-file {
            color: #000;
            background: #eaf5e0;
        }

        /* Submit disclaimer */
        .submit-disclaimer {
            font-family: 'Vectora Light';
            font-size: 12px;
            text-align: justify;
            margin-top: 32px;
            margin-bottom: 24px;
        }

        .submit-disclaimer a {
            color: #6ab235;
            font-weight: 700;
            -webkit-text-stroke: 0.5px;
            text-decoration: underline;
        }

        /* Thank You page */
        .bds-thank-you {
            max-width: 700px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
        }

        .bds-thank-you h2 {
            font-family: 'Vectora Black';
            font-size: 38px;
            letter-spacing: -0.05em;
            color: #6ab235;
            margin-bottom: 28px;
            text-align: center;
        }

        .bds-thank-you p {
            font-family: 'Vectora Roman';
            font-size: 17px;
            line-height: 1.7;
            text-align: center;
            margin-bottom: 24px;
        }

        .bds-phone {
            font-family: 'Vectora Bold' !important;
            font-size: 26px !important;
            letter-spacing: -0.03em;
            color: #6ab235;
            margin-bottom: 32px !important;
        }

        .bds-phone a {
            color: #6ab235;
            text-decoration: none;
        }

        /* Mobile */
        @media (max-width: 600px) {
            .application-row {
                grid-template-columns: 1fr !important;
            }

            .debt-totals-row {
                grid-template-columns: 1fr;
            }
        }
