/* ===== Potenzial-Check Page — Applicant-Style, einspaltig ===== */

/* ── Page Wrapper ── */
.pc-page {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    text-align: left;
    color: #334155;
    padding: 2rem 1rem 4rem;
    max-width: 1280px;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Gradient Text ── */
.pc-gradient-text {
    background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero Section ── */
.pc-hero {
    text-align: center;
    max-width: 896px;
    margin: 0 auto 4rem;
}

.pc-hero-title {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin: 0 0 1.5rem 0;
    line-height: 1.15;
}

.pc-hero-desc {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #64748b;
    max-width: 768px;
    margin: 0 auto;
    font-weight: 300;
}

@media (min-width: 768px) {
    .pc-hero-desc {
        font-size: 1.25rem;
    }
}

/* ── Flash Messages ── */
.pc-flash-container {
    max-width: 64rem;
    margin: 0 auto 1.5rem auto;
}

.pc-flash {
    padding: 0.875rem 1.125rem;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.pc-flash.success {
    background: #d1fae5;
    color: #065f46;
    border-color: #a7f3d0;
}

.pc-flash.error {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

/* ── Content Area (einspaltig, volle Breite) ── */
.pc-content {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* ── Info Cards Row (nebeneinander) ── */
.pc-info-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pc-info-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── Info Cards ── */
.pc-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.pc-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.5rem 0;
}

.pc-card-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.pc-card-icon--indigo {
    background: #eef2ff;
    color: #4f46e5;
}

.pc-card-icon--blue {
    background: #eff6ff;
    color: #2563eb;
}

/* ── Card Lists ── */
.pc-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pc-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.5;
}

.pc-card-list li span {
    color: #475569;
}

.pc-card-list li i {
    font-size: 6px;
    margin-top: 0.625rem;
    flex-shrink: 0;
}

.pc-card-list--indigo li i {
    color: #818cf8;
}

.pc-card-list--blue li i {
    color: #60a5fa;
}

/* ── Trust / NDA Box ── */
.pc-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(238, 242, 255, 0.5);
    border: 1px solid #e0e7ff;
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.pc-trust-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #fff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    flex-shrink: 0;
}

.pc-trust p {
    margin: 0;
    font-size: 0.875rem;
    color: #334155;
    line-height: 1.625;
}

.pc-trust p strong,
.pc-trust p b {
    font-weight: 700;
}

/* ── Form Card (Applicant-Style) ── */
.pc-form-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow:
        0 20px 25px -5px rgba(226, 232, 240, 0.5),
        0 8px 10px -6px rgba(226, 232, 240, 0.5);
}

@media (min-width: 768px) {
    .pc-form-card {
        padding: 3rem;
    }
}

.pc-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pc-form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.pc-form-header p {
    color: #64748b;
    margin: 1rem 0 0 0;
    font-size: 1rem;
}

/* ── Form Grid (wie Applicant) ── */
.pc-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pc-form {
        grid-template-columns: 1fr 1fr;
    }
}

.pc-field--half {
    grid-column: span 1;
}

.pc-field--full {
    grid-column: 1 / -1;
}

/* ── Form Fields (Applicant-Style) ── */
.pc-form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.pc-form-field input[type="text"],
.pc-form-field input[type="email"],
.pc-form-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #f8fafc;
    font-size: 1rem;
    color: #0f172a;
    outline: none;
    transition: all 0.15s ease;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.pc-form-field input::placeholder,
.pc-form-field textarea::placeholder {
    color: #94a3b8;
}

.pc-form-field input:focus,
.pc-form-field textarea:focus {
    border-color: #6366f1;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.pc-form-field textarea {
    resize: none;
}

/* ── Form Footer (Tip + Submit) ── */
.pc-form-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* ── File Uploads (wie Applicant) ── */
.pc-uploads {
    padding-top: 0.5rem;
}

.pc-upload-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.pc-upload-field input[type="file"] {
    display: block;
    width: 100%;
    font-size: 0.875rem;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #f8fafc;
    padding: 0.25rem;
    transition: all 0.15s ease;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.pc-upload-field input[type="file"]::file-selector-button {
    background: #eef2ff;
    border: none;
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4338ca;
    cursor: pointer;
    margin-right: 1rem;
    transition: background 0.15s ease;
    font-family: 'Inter', sans-serif;
}

.pc-upload-field input[type="file"]::file-selector-button:hover {
    background: #e0e7ff;
}

.pc-file-hint {
    font-size: 11px;
    color: #94a3b8;
    margin: 0.375rem 0 0 0.25rem;
}

/* ── Consent (Datenschutz-Checkbox) ── */
.pc-consent {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.pc-consent input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
    border: 1px solid #cbd5e1;
    accent-color: #4f46e5;
    cursor: pointer;
    flex-shrink: 0;
}

.pc-consent label {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.625;
    cursor: pointer;
    user-select: none;
}

.pc-consent a {
    color: #4f46e5;
    text-decoration: none;
}

.pc-consent a:hover {
    text-decoration: underline;
}

/* ── Tip Box ── */
.pc-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 0.75rem;
    width: 100%;
    box-sizing: border-box;
}

.pc-tip > i {
    color: #94a3b8;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.pc-tip p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
    line-height: 1.625;
    font-style: italic;
}

/* ── Submit Button (Pill, wie Applicant) ── */
.pc-submit {
    background: #0f172a;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 1rem 3rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 10px 15px -3px rgba(99, 102, 241, 0.2),
        0 4px 6px -4px rgba(99, 102, 241, 0.2);
    letter-spacing: 0.025em;
    transform: translateY(0);
}

.pc-submit:hover {
    background: #4f46e5;
    transform: translateY(-4px);
    box-shadow:
        0 20px 25px -5px rgba(99, 102, 241, 0.25),
        0 8px 10px -6px rgba(99, 102, 241, 0.2);
}

.pc-submit:active {
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .pc-field--half {
        grid-column: 1 / -1;
    }

    .pc-hero-desc {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .pc-form-card {
        padding: 1.5rem;
    }

    .pc-card {
        padding: 1.5rem;
    }

    .pc-trust {
        flex-direction: column;
        text-align: center;
    }

    .pc-submit {
        width: 100%;
    }
}
