/* Synqly PRO Frontend Styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

#synqly-careers-container, .synqly-job-wrap {
    max-width: 850px;
    margin: 40px auto;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #313131;
    line-height: 1.6;
}

/* Header */
.synqly-job-header { margin-bottom: 40px; text-align: center; }
.synqly-job-title-lg { 
    font-size: 3rem; 
    font-weight: 800;
    margin-bottom: 1rem; 
    line-height: 1.2; 
    color: #0f172a; 
    letter-spacing: -0.02em;
}
.synqly-job-meta-row { 
    font-size: 1.1rem; 
    color: #64748b; 
    margin-bottom: 1.5rem; 
    font-weight: 500;
}
.synqly-dot::before { content: '•'; margin: 0 0.75rem; color: #cbd5e1; }

.synqly-apply-top, .synqly-apply-bottom {
    margin: 30px 0;
}
.scp-lever-btn {
    display: inline-block;
    background: #3b82f6;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.scp-lever-btn:hover {
    background: #2563eb;
    color: #ffffff;
}
.synqly-divider {
    border: 0;
    border-top: 1px solid #e5e5e5;
    margin: 40px 0;
}

/* Benefits Section */
.synqly-benefits-section { 
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.synqly-benefits-section h3 { 
    font-size: 1.5rem; 
    margin-top: 0;
    margin-bottom: 24px; 
    font-weight: 700;
    color: #0f172a;
    text-align: center;
}
.synqly-benefits-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.synqly-benefits-grid li {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #334155;
    font-weight: 500;
}
.check-icon {
    width: 24px;
    height: 24px;
    color: #10b981; 
    margin-right: 12px;
    flex-shrink: 0;
}

/* Base Content */
.synqly-job-content h3 { 
    font-size: 1.75rem; 
    margin-bottom: 1rem; 
    font-weight: 700;
    color: #0f172a;
    margin-top: 2rem;
}
.synqly-job-content p { 
    font-size: 1.1rem;
    color: #475569; 
    margin-bottom: 1.5rem; 
}
.synqly-job-content ul {
    font-size: 1.1rem;
    color: #475569;
    padding-left: 20px;
}
.synqly-job-content li { margin-bottom: 10px; }

/* Job Board View */
.scp-board { max-width: 100%; }
.scp-job-list { 
    list-style: none; 
    padding: 0; 
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.scp-job-row { padding: 0; }
.scp-job-link { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 24px; 
    text-decoration: none; 
    color: inherit; 
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease; 
}
.scp-job-link:hover { 
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}
.scp-job-row-title { 
    font-weight: 700; 
    font-size: 1.25rem; 
    color: #0f172a; 
}
.scp-job-row-loc { 
    color: #64748b; 
    font-weight: 500;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}
.scp-btn { 
    background: #0f172a; 
    color: #ffffff; 
    font-weight: 600; 
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.2s;
}
.scp-job-link:hover .scp-btn { background: #3b82f6; }

/* Application Form */
.scp-apply-wrap { 
    background: #ffffff; 
    padding: 0; 
    margin-top: 20px;
}
.scp-apply-wrap h2 {
    font-size: 1.75rem; 
    margin-bottom: 24px; 
    font-weight: 700;
    color: #0f172a;
}
.scp-apply-form { display: grid; gap: 24px; }
.scp-field label { 
    display: block; 
    font-weight: 600; 
    margin-bottom: 8px; 
    color: #313131;
    font-size: 0.95rem;
}
.scp-field input[type=text], 
.scp-field input[type=email], 
.scp-field input[type=tel], 
.scp-field textarea,
.scp-field select {
    width: 100%; 
    padding: 14px 16px; 
    border: 1px solid #cbd5e1; 
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #0f172a;
    transition: all 0.2s ease;
    background: #f8fafc;
    box-sizing: border-box;
}
.scp-field input[type=text]:focus, 
.scp-field input[type=email]:focus, 
.scp-field input[type=tel]:focus, 
.scp-field textarea:focus,
.scp-field select:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.scp-field input[type=file] {
    width: 100%; 
    padding: 20px; 
    border: 2px dashed #cbd5e1; 
    border-radius: 8px;
    background: #f8fafc;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}
.scp-field input[type=file]:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.scp-btn-submit {
    background: #3b82f6; 
    color: #fff; 
    padding: 16px 32px; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}
.scp-btn-submit:hover:not(:disabled) { 
    background: #2563eb; 
}
.scp-btn-submit:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}