/* -------------------------------
   CREDIT REPORT FORM – CORE
--------------------------------*/

#cr-app {
    max-width: 1100px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #222;
}

.cr-step {
    display: none;
}

.cr-step.active {
    display: flex;
    gap: 40px;
}

/* -------------------------------
   STEP 1 – TWO COLUMN LAYOUT
--------------------------------*/

.cr-step-1 {
    background: #f7f9fc;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Left Box */
.cr-left {
    flex: 1;
    padding: 20px;
}

.cr-left h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cr-left ul {
    list-style: none;
    padding: 0;
}

.cr-left li {
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
}

.cr-left li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #1c8adb;
    font-weight: bold;
}

/* Right Box */
.cr-right {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
}

.cr-right h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

/* -------------------------------
   FORM ELEMENTS
--------------------------------*/

#cr-form input,
#cr-form select {
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccd5e0;
    transition: border 0.2s, box-shadow 0.2s;
}

#cr-form input:focus,
#cr-form select:focus {
    border-color: #1c8adb;
    box-shadow: 0 0 0 2px rgba(28,138,219,0.15);
    outline: none;
}

#cr-form label {
    font-size: 13px;
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

#cr-form button {
    width: 100%;
    background: #004aad;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

#cr-form button:hover {
    background: #004aad;
}

/* -------------------------------
   STEP 2 – OTP
--------------------------------*/

.cr-step-2 {
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.cr-step-2 h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.cr-step-2 p {
    font-size: 14px;
    margin-bottom: 20px;
}

#cr-otp {
    width: 220px;
    padding: 14px;
    font-size: 20px;
    text-align: center;
    letter-spacing: 6px;
    border-radius: 6px;
    border: 1px solid #ccd5e0;
    margin-bottom: 20px;
}

#cr-verify-otp {
    background: #004aad;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
}

/* -------------------------------
   STEP 3 – DOWNLOAD
--------------------------------*/

.cr-step-3 {
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.cr-step-3 h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

#cr-download {
    background: #004aad;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

#cr-download:hover {
    background: #004aad;
}

.tc-wrapper {
    display: flex;
    align-items: center;
}

.tc-wrapper input[type="checkbox"] {
    margin: 0 8px 0 0;
}

.tc-wrapper label {
    margin: 0;
    line-height: 1.4;
}

.tc-inline {
    display: flex !important;
    align-items: center;
}

.tc-inline span {
    margin-left: 6px;
}


/* -------------------------------
   RESPONSIVE
--------------------------------*/

@media (max-width: 768px) {

    .cr-step.active {
        flex-direction: column;
    }

    .cr-left, .cr-right {
        padding: 15px;
    }

    .cr-left h2 {
        font-size: 22px;
    }

    .cr-right h3 {

        font-size: 20px;
    }
}


.cr-step-3 {
    margin: auto;
    text-align: center;
}

.cr-score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 6px solid #1a73e8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    font-size: 36px;
    font-weight: bold;
    color: #1a73e8;
}

.cr-section {
    text-align: left;
    margin: 20px 0;
}

.cr-list {
    list-style: none;
    padding: 0;
}

.cr-list li {
    margin-bottom: 6px;
}

.cr-summary-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.cr-summary-grid div span {
    display: block;
    font-size: 20px;
    font-weight: bold;
}

.cr-download-box {
    margin-top: 25px;
}

.cr-btn-primary {
    background: #004aad;
    color: #fff;
    padding: 14px 22px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
}

.cr-container {
    max-width: 1000px;
    margin: 20px auto;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.cr-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cr-section {
    flex: 1;
    min-width: 300px;
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.cr-section h4 {
    margin-top: 0;
    border-bottom: 2px solid #00E5FF; /* Cyan accent to match your tech theme */
    padding-bottom: 8px;
    color: #1e293b;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cr-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.cr-list li:last-child {
    border-bottom: none;
}

.cr-list li strong {
    color: #64748b;
}

.cr-list li span {
    font-weight: 600;
    color: #0f172a;
}

/* Specific grid for long lists */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (max-width: 768px) {
    .cr-row {
        flex-direction: column;
    }
}