/* ============================================
   DPR CHECK PAGE (Mobile-First)
   ============================================ */

.dpr-check-section {
    padding: 24px 16px 60px;
    max-width: 1160px;
    margin: 0 auto;
}

.dpr-check-container {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    padding: 32px 20px;
    box-shadow: 0 22px 55px rgba(13, 59, 102, 0.08);
}

.dpr-check-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dpr-check-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.dpr-check-container .form-header {
    margin-bottom: 32px;
    text-align: center;
}

.dpr-check-container .form-header h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(115deg, #0b3f8f 0%, #1f8a46 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 12px;
}

.dpr-check-container .form-header p {
    text-align: center;
    color: #4b5563;
    font-size: 17px;
}

.dpr-check-container label {
    font-weight: 700;
    color: #1f2933;
    font-size: 0.98rem;
}

.dpr-check-container .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
}

.dpr-check-container .input-wrapper input {
    width: 100%;
    padding: 12px 40px 12px 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    border: 1px solid #d1d5db;
    border-radius: 0 !important;
    -webkit-appearance: none;
    appearance: none;
    background: #ffffff;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dpr-check-container .input-wrapper input:focus {
    border-color: #0d3b66;
    box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.15);
}

/* Mobile-specific sizing to prevent text clipping */
@media (max-width: 480px) {
    .dpr-check-container .input-wrapper input {
        padding: 10px 20px 10px 38px;
        font-size: 0.85rem;
    }
}

.dpr-check-container .input-wrapper input::placeholder {
    color: #8a94a6;
    font-weight: 500;
}

.dpr-check-container .input-icon {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    color: #0d3b66;
    top: 50%;
    transform: translateY(-50%);
    stroke-width: 2;
}

.dpr-check-container .input-highlight {
    display: none;
}

.status-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.status-header h3 {
    font-family: inherit;
    font-size: 24px;
    color: var(--primary-blue);
}

.status-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

/* Status Items Styling */
.status-item {
    background: rgba(0, 58, 125, 0.03);
    padding: 16px;
    border-radius: 0;
    border: 1px solid rgba(0, 58, 125, 0.08);
}

.status-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.status-value {
    font-size: 14px;
    font-weight: 600;
}

/* Timeline Styling */
.status-timeline {
    position: relative;
    padding-left: 32px;
}

.status-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-green) 0%, rgba(45, 122, 63, 0.2) 100%);
}

.timeline-step {
    position: relative;
    padding: 12px 0 12px 20px;
}

.timeline-marker {
    position: absolute;
    left: -28px;
    top: 16px;
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: #e5e5e5;
    border: 2px solid #f9f9f9;
}

.dpr-check-container .form-actions {
    margin-top: 8px;
}

.dpr-check-container .submit-btn {
    width: 240px;
    height: 64px;
    padding: 0 36px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 0;
    background: var(--primary-gradient);
    box-shadow: 0 16px 34px rgba(11, 63, 143, 0.22);
}

.dpr-check-container .submit-btn .btn-icon {
    width: 22px;
    height: 22px;
}

.dpr-check-container .submit-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 18px 38px rgba(11, 63, 143, 0.24);
}

.dpr-check-container .submit-btn:active {
    transform: translateY(0);
}

/* Desktop Enhancements (769px+) */
@media (min-width: 769px) {
    .dpr-check-section {
        padding: 68px 28px 88px;
    }

    .dpr-check-container {
        padding: 56px 56px 64px;
        border-radius: 0;
    }

    .dpr-check-form .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .dpr-check-container .input-wrapper input {
        padding: 14px 50px 14px 45px;
        font-size: 0.95rem;
    }

    .status-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .status-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .status-timeline {
        padding-left: 40px;
    }

    .status-timeline::before {
        left: 16px;
    }

    .timeline-step {
        padding-left: 24px;
    }

    .timeline-marker {
        left: -32px;
        width: 16px;
        height: 16px;
        border: 3px solid #f9f9f9;
    }
}